diff options
author | nokoe <nokoe@mailbox.org> | 2025-07-07 17:30:09 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2025-07-07 17:35:23 +0200 |
commit | 3e6f1dd21d55e32549052e9484be3dc6b3b6cdab (patch) | |
tree | 415e41c0118cf582d2f0f110978ee08ae4343226 | |
parent | ad1b561515f8a722f48301a66ef54516af0b2b5c (diff) | |
download | hurrycurry-3e6f1dd21d55e32549052e9484be3dc6b3b6cdab.tar hurrycurry-3e6f1dd21d55e32549052e9484be3dc6b3b6cdab.tar.bz2 hurrycurry-3e6f1dd21d55e32549052e9484be3dc6b3b6cdab.tar.zst |
fix #351
-rw-r--r-- | client/server_list.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/server_list.gd b/client/server_list.gd index 4e03a429..c3fc1f27 100644 --- a/client/server_list.gd +++ b/client/server_list.gd @@ -71,7 +71,7 @@ func _ready() -> void: # SAFETY: reading/writing arrays/dictionaries is allowed as long as # the size is not changed. # cf.: https://docs.godotengine.org/en/4.3/tutorials/performance/thread_safe_apis.html#gdscript-arrays-dictionaries - var res = OS.create_process(get_discovery_path(), [], true) + var res = OS.create_process(get_discovery_path(), [], false) # SAFETY: since this is not read until the thread stops, this should # probably be safe without synchronisation :) pid = res |