diff options
Diffstat (limited to 'Game/Client.gd')
-rw-r--r-- | Game/Client.gd | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Game/Client.gd b/Game/Client.gd index 0af4e9d..4eb48bb 100644 --- a/Game/Client.gd +++ b/Game/Client.gd @@ -18,8 +18,6 @@ var state: State : var current_stage: Stage -var selection: SelectionManager - var player: Player: get(): return Network.get_player(multiplayer.get_unique_id()) @@ -33,10 +31,6 @@ func _notification(what: int) -> void: func initialize_stage(stage: Stage): current_stage = stage - - if not selection: - selection = preload("res://Game/Selection/SelectionManager.tscn").instantiate() - add_child(selection) func ready_stage(_stage: Stage): pass |