Skip to content

Commit 7bcbbf7

Browse files
committed
Hide server args
1 parent e25035c commit 7bcbbf7

File tree

1 file changed

+1
-3
lines changed
  • mirror-godot-app/scripts/autoload/zone

1 file changed

+1
-3
lines changed

mirror-godot-app/scripts/autoload/zone/client.gd

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -543,11 +543,9 @@ func _join_new_server_locally(space_id: String) -> bool:
543543
if pid != null:
544544
OS.kill(pid)
545545
var firebase_auth = str(Firebase.Auth.auth.refreshtoken)
546-
print(firebase_auth)
547546
# For debugging this allows you to grab breakpoints from the server "--remote-debug", "tcp://127.0.0.1:6008"]
548547
# If enabled it could cause join time to be much longer when booting server
549-
var arguments = ["--server", "--space", space_id, "--mode", "edit", "--uuid", "localhost", "--server_login", firebase_auth, "--headless"]
550-
print("SERVER ARGS: ", arguments)
548+
var arguments = ["--server", "--space", space_id, "--mode", "edit", "--uuid", "localhost", "--server_login", firebase_auth, "--headless", "--remote-debug", "tcp://127.0.0.1:6008"]
551549
pid = OS.create_process(OS.get_executable_path(), arguments, true)
552550
start_join_localhost()
553551
return true

0 commit comments

Comments
 (0)