From a26794f40ac1beb96f2c7fa4c0fbe5c39a0eb145 Mon Sep 17 00:00:00 2001 From: HokageM Date: Sat, 24 Feb 2024 14:46:25 +0100 Subject: [PATCH] feat: adjust foraging and scout bee count --- src/ninjabees/Hive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ninjabees/Hive.py b/src/ninjabees/Hive.py index 5aef3a9..7d83cd0 100644 --- a/src/ninjabees/Hive.py +++ b/src/ninjabees/Hive.py @@ -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 @@ -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): """