Skip to content

Commit

Permalink
fix: bee hive should be white
Browse files Browse the repository at this point in the history
  • Loading branch information
HokageM committed Feb 24, 2024
1 parent 2ebeb54 commit fbccaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ninjabees/environment/World.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def update_world_map(self):
elif entity_type == EntityType.Food:
self.__world_map[entity_y][entity_x] = f'{World.GREEN}F{World.RESET}'
elif entity_type == EntityType.Hive:
self.__world_map[entity_y][entity_x] = f'{World.MAGENTA}H{World.RESET}'
self.__world_map[entity_y][entity_x] = f'H'
else:
raise ValueError("Unknown entity type")

Expand Down

0 comments on commit fbccaad

Please sign in to comment.