@@ -152,6 +152,8 @@ static Multiplayer()
152
152
Sync . InitHandlers ( ) ;
153
153
154
154
HandleCommandLine ( ) ;
155
+
156
+ RuntimeHelpers . RunClassConstructor ( typeof ( Text ) . TypeHandle ) ;
155
157
}
156
158
157
159
private static void SetUsername ( )
@@ -174,6 +176,11 @@ private static void SetUsername()
174
176
Multiplayer . username = "Player" + Rand . Range ( 0 , 9999 ) ;
175
177
}
176
178
179
+ private static void DoubleLongEvent ( Action action , string textKey )
180
+ {
181
+ LongEventHandler . QueueLongEvent ( ( ) => LongEventHandler . QueueLongEvent ( action , textKey , false , null ) , textKey , false , null ) ;
182
+ }
183
+
177
184
private static void HandleCommandLine ( )
178
185
{
179
186
if ( GenCommandLine . TryGetCommandLineArg ( "connect" , out string ip ) )
@@ -190,7 +197,7 @@ private static void HandleCommandLine()
190
197
int . TryParse ( split [ 1 ] , out port ) ;
191
198
192
199
if ( IPAddress . TryParse ( ip , out IPAddress addr ) )
193
- LongEventHandler . QueueLongEvent ( ( ) => ClientUtil . TryConnect ( addr , port ) , "Connecting" , false , null ) ;
200
+ DoubleLongEvent ( ( ) => ClientUtil . TryConnect ( addr , port ) , "Connecting" ) ;
194
201
}
195
202
196
203
if ( GenCommandLine . CommandLineArgPassed ( "arbiter" ) )
@@ -202,7 +209,7 @@ private static void HandleCommandLine()
202
209
203
210
if ( GenCommandLine . TryGetCommandLineArg ( "replay" , out string replay ) )
204
211
{
205
- LongEventHandler . QueueLongEvent ( ( ) =>
212
+ DoubleLongEvent ( ( ) =>
206
213
{
207
214
Replay . LoadReplay ( Replay . ReplayFile ( replay ) , true , ( ) =>
208
215
{
@@ -214,7 +221,7 @@ private static void HandleCommandLine()
214
221
215
222
Application . Quit ( ) ;
216
223
} ) ;
217
- } , "Replay" , false , null ) ;
224
+ } , "Replay" ) ;
218
225
}
219
226
220
227
if ( GenCommandLine . CommandLineArgPassed ( "printsync" ) )
@@ -332,6 +339,16 @@ private static void DoPatches()
332
339
new HarmonyMethod ( typeof ( PageModsPatch ) , nameof ( PageModsPatch . Postfix ) )
333
340
) ;
334
341
}
342
+
343
+ var cancelForArbiter = new HarmonyMethod ( typeof ( CancelForArbiter ) , "Prefix" ) ;
344
+
345
+ var prisonLaborBehavior = MpReflection . GetTypeByName ( "PrisonLabor.Behaviour_MotivationIcon" ) ;
346
+ if ( prisonLaborBehavior != null )
347
+ harmony . Patch ( prisonLaborBehavior . GetMethod ( "Update" , new Type [ 0 ] ) , cancelForArbiter ) ;
348
+
349
+ var prisonLaborPawnIcons = MpReflection . GetTypeByName ( "PrisonLabor.Core.GUI_Components.PawnIcons" ) ?? MpReflection . GetTypeByName ( "PrisonLabor.MapComponent_Icons" ) ;
350
+ if ( prisonLaborPawnIcons != null )
351
+ harmony . Patch ( prisonLaborPawnIcons . GetMethod ( "MapComponentTick" , new Type [ 0 ] ) , cancelForArbiter ) ;
335
352
}
336
353
337
354
public static UniqueList < Texture2D > icons = new UniqueList < Texture2D > ( ) ;
0 commit comments