fixing typo

This commit is contained in:
Dan 2024-05-03 15:45:40 +01:00
parent 752131c955
commit 7c3bca07f9
3 changed files with 6 additions and 6 deletions

View file

@ -29,9 +29,9 @@ func find_something_to_do():
if bee.nectar > 0:
## Bee has pollen - head home
Log.pr(bee, "I have nectar, I should return to the hive")
state_transition.emit(self, "Traveling")
state_transition.emit(self, "Travelling")
else:
## Bee has no pollen - they should move to a flower
Log.pr(bee, "I have no nectar, I should find a flower")
state_transition.emit(self, "Traveling")
state_transition.emit(self, "Travelling")
pass