コード例 #1
0
 private static boolean checkPool(SpawnGroup2 spawn) {
   if (spawn.getSpawnTemplates().size() < spawn.getPool()) {
     log.warn(
         "Pool size more then spots, npcId: "
             + spawn.getNpcId()
             + ", worldId: "
             + spawn.getWorldId());
     return false;
   }
   return true;
 }