I’m not sure that I am missing something, but the roads and built walls do not appear in Game.structures, while the shafts and extensions look great. Is this a mistake, or am I doing something wrong. Here is the code I'm using
for(var i in Game.structures){
var struct = Game.structures[i];
var type = struct.structureType;
console.log(type);
}
source
share