You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FezMultiplayerMod/MultiplayerMod/FezMultiplayerMod.cs
+18-26Lines changed: 18 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ public FezMultiplayerMod(Game game)
131
131
{
132
132
settingsFileReadFailed=true;
133
133
mp.FatalException=e;
134
-
SharedTools.LogWarning("FezMultiplayerMod",$"Failed to read settings file (path: \"{System.IO.Path.GetFullPath(SettingsFilePath)}\"",(int)Common.LogSeverity.Error);
134
+
SharedTools.LogWarning("FezMultiplayerMod",$"Failed to read settings file (path: \"{System.IO.Path.GetFullPath(SettingsFilePath)}\"",LogSeverity.Error);
135
135
}
136
136
mp=newMultiplayerClient(settings);
137
137
voidTryWriteSettingsFile()
@@ -143,7 +143,7 @@ void TryWriteSettingsFile()
143
143
catch(Exceptione)
144
144
{
145
145
mp.FatalException=e;
146
-
SharedTools.LogWarning("FezMultiplayerMod",$"Failed to {(settingsFileReadFailed?"read & ":"")}write to settings file (path: \"{System.IO.Path.GetFullPath(SettingsFilePath)}\"",(int)Common.LogSeverity.Error);
146
+
SharedTools.LogWarning("FezMultiplayerMod",$"Failed to {(settingsFileReadFailed?"read & ":"")}write to settings file (path: \"{System.IO.Path.GetFullPath(SettingsFilePath)}\"",LogSeverity.Error);
0 commit comments