Skip to content

Commit

Permalink
feat: adjust foraging and scout bee count
Browse files Browse the repository at this point in the history
  • Loading branch information
HokageM committed Feb 24, 2024
1 parent dccbd74 commit a26794f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ninjabees/Hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Hive(Entity):
This class represents a hive.
"""

def __init__(self, name, num_onlooker_bees, max_cnt_foraging_bees=300, x=0, y=0, world=None):
def __init__(self, name, num_onlooker_bees, max_cnt_foraging_bees=700, x=0, y=0, world=None):
super().__init__(x, y, EntityType.Hive)

self.name = name
Expand All @@ -22,7 +22,7 @@ def __init__(self, name, num_onlooker_bees, max_cnt_foraging_bees=300, x=0, y=0,

self.__current_foraging = 0
self.max_cnt_foraging_bees = max_cnt_foraging_bees
self.bee_population = [Bee("Bee", self, world) for _ in range(600)]
self.bee_population = [Bee("Bee", self, world) for _ in range(900)]

def add_found_food_source(self, food_source, path_to_food):
"""
Expand Down

0 comments on commit a26794f

Please sign in to comment.