Removing a lot of logging
This commit is contained in:
parent
e88b2248b3
commit
07b63a8426
15 changed files with 9 additions and 67 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue