Removing a lot of logging

This commit is contained in:
Dan Baker 2024-05-05 18:08:50 +01:00
parent e88b2248b3
commit 07b63a8426
15 changed files with 9 additions and 67 deletions

View file

@ -8,7 +8,6 @@ class_name BeeTravelling
var return_to_hive : bool = false
func enter(_msg := {}):
Log.pr("I am on the move!")
return_to_hive = false
## Get the next target location from the bee
if bee.just_gathering:
@ -17,11 +16,8 @@ func enter(_msg := {}):
else:
target = bee.get_next_target()
Log.pr(bee, target)
# If we have no target, we are returning to the hive
if !target:
Log.pr("No more drones to visit, going to go back to the hive")
return_to_hive = true
bee.animation_player.play("Flying")