the numbers mason

This commit is contained in:
Chris Bell 2024-12-15 00:34:56 -06:00
parent a59c119de6
commit 1e6d5da3e2

View File

@ -322,13 +322,13 @@ func read_p2p_packet() -> void:
func register_node(node: Node) -> String:
var uuid = generate_uuid()
uuid_counter += 1
node_map[uuid] = node
return uuid
func generate_uuid() -> String:
var uuid = str(Time.get_unix_time_from_system()) + "-" + str(Time.get_ticks_msec())
return uuid
uuid_counter += 1
return uuid_counter
func request_player_avatar(user_id: int, size: int = 128) -> void: