From 69816925abaae8bd5d79431025b4f7a6c6e9a7eb Mon Sep 17 00:00:00 2001 From: Douwe Ravers Date: Wed, 1 Jul 2026 01:01:06 +0200 Subject: [PATCH] Made spawn way slower. --- douwco_hivemind/src/Structures/Spawn.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();