Loading

Paste #pe2m5s2o1

  1.     if (this.companies == null) {
  2.         this.companies = {};
  3.         if (this.debug_messages >= 2) GSLog.Info("Initialized this.companies = " + this.companies);
  4.         for (local c_id = GSCompany.COMPANY_FIRST; c_id < GSCompany.COMPANY_LAST; c_id++) {
  5.             this.companies[c_id] <- null;
  6.             this.companies[c_id] = {
  7.                 goal_id = null,
  8.                 inauguration_date = null
  9.             };
  10.             if (this.debug_messages >= 3) GSLog.Info("Initialized this.companies[" + c_id + "] = { goal_id = " + this.companies[c_id].goal_id + ", inauguration_date = " + this.companies[c_id].inauguration_date + " }");
  11.         }
  12.     }

Comments