This commit is contained in:
2024-02-27 23:21:44 +01:00
parent ba37eca0c9
commit bfec08ff02
38 changed files with 89 additions and 92 deletions

View File

@ -9,7 +9,7 @@ func handle_packet(data: PackedByteArray):
var error := buffer.get_8()
if error != 0:
%Client.log("[%s] Login failed." % Global.account.name)
Log.info("[%s] Login failed." % Global.account.name)
failure.emit()
return
@ -27,7 +27,7 @@ func send_login():
buffer.put_u8(Packet.LOGIN)
buffer.put_data(JSON.stringify([Global.account.name, password]).to_utf8_buffer())
%Client.send(buffer.data_array)
%Client.log("Connecting...")
Log.info("Connecting...")
func is_logged_in() -> bool:
return Global.account.auth_token != ""