diff --git a/douwco_hivemind/src/Structures/Spawn.cpp b/douwco_hivemind/src/Structures/Spawn.cpp index 914821a..1d6af57 100644 --- a/douwco_hivemind/src/Structures/Spawn.cpp +++ b/douwco_hivemind/src/Structures/Spawn.cpp @@ -5,8 +5,8 @@ #include "Structures/Spawn.hpp" void DouwcoHivemind::Spawn::loop() { - // Only run every 50 ticks - if (Screeps::Game.time() % 50 != 0) + // Only run every 500 ticks + if (Screeps::Game.time() % 250 != 0) return; int energyAvailable = spawn.room().energyAvailable();