Rewriting from scratch. Fixing old code is just less fun.
This commit is contained in:
21
_rooms.js
Normal file
21
_rooms.js
Normal file
@@ -0,0 +1,21 @@
|
||||
module.exports = {
|
||||
start: function () {
|
||||
for (const room_name in Game.rooms) {
|
||||
const room = Game.rooms[room_name];
|
||||
room.init();
|
||||
}
|
||||
},
|
||||
|
||||
update: function () {
|
||||
for (const room_name in Game.rooms) {
|
||||
const room = Game.rooms[room_name];
|
||||
if (room.isNewLevel()) {
|
||||
// Place new building types if the max construcion sites isn't achieved yet.
|
||||
if (!room.isConstructionQueueFull()) {
|
||||
room.planRoads();
|
||||
room.planStructures();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user