Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagejavascript
linenumberstrue
// iHave(structureTypeOrID) returns true if you have at least one of those structures fully built
var iHave = (function(){
  var buildingIsBuilt = function(building) {
    return building.status == BUILT;
  }
  return function (structure) {
    var list =return enumStruct(me,structure);
    return list.some(buildingIsBuilt);
  }
})();

...