Added basic chat

This commit is contained in:
2024-01-28 22:08:08 +01:00
parent 75801e21fd
commit a6278cedb1
17 changed files with 182 additions and 22 deletions

View File

@ -14,5 +14,8 @@ func get_player(id: String) -> Player:
return players[id] as Player
func remove(id: String):
if !players.has(id):
return
players[id].queue_free()
players.erase(id)