diff options
-rw-r--r-- | client/player/follow_camera.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/player/follow_camera.gd b/client/player/follow_camera.gd index 3c993ee0..6bd1b9ef 100644 --- a/client/player/follow_camera.gd +++ b/client/player/follow_camera.gd @@ -51,7 +51,7 @@ func _ready(): ground = target.position func _process(delta): - if target != null: + if target != null && get_tree().root.get_node("Entry/GameMenu/IngameMenu") == null: follow(delta) func _input(_event): |