File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ private void StartPipeServer()
290290
291291 isConnecting = true ;
292292
293- Task . Run ( ( ) =>
293+ new Thread ( ( ) =>
294294 {
295295 try
296296 {
@@ -314,12 +314,16 @@ private void StartPipeServer()
314314 catch ( Exception e )
315315 {
316316 pipeServer = null ;
317+ MelonLogger . Msg ( $ "[HidInput] Pipe Server Error: { e . Message } ") ;
317318 }
318319 finally
319320 {
320321 isConnecting = false ;
321322 }
322- } ) ;
323+ } )
324+ {
325+ IsBackground = true
326+ } ;
323327 }
324328
325329 private void Update ( )
Original file line number Diff line number Diff line change 1- using System ;
21using AquaMai . Config . Attributes ;
3- using AquaMai . Config . Types ;
4- using AquaMai . Core . Helpers ;
52using HarmonyLib ;
6- using Main ;
73using UnityEngine ;
84
95namespace AquaMai . Mods . Utils ;
You can’t perform that action at this time.
0 commit comments