Ah good point! Next time that will be the first thing I do haha when I console logged tower, it returned every structure I have, then I noticed var towers = _.filter(Game.structures, (s) => STRUCTURE_TOWER); was missing something. Changed it to this: var towers = _.filter(Game.structures, (s) => s.structureType == STRUCTURE_TOWER); and now everything works like a charm! Thanks!