diff options
Diffstat (limited to 'client/server_list.gd')
-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 |