reverse previous commit

This commit is contained in:
Gebruiker
2022-10-23 01:26:06 +02:00
parent 90448c79e4
commit 15c86d3c14
12 changed files with 0 additions and 5 deletions

15
_spawnsHandler.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
start: function () {
for (const spawn_name in Game.spawns) {
const spawn = Game.spawns[spawn_name];
spawn.init();
}
},
update: function () {
for (const spawn_name in Game.spawns) {
const spawn = Game.spawns[spawn_name];
if (spawn.requireNewCreep(ROLE_HARVESTER)) spawn.createHarvester();
}
}
}