コード例 #1
0
ファイル: TownyUniverse.java プロジェクト: MrNaikito/towny
 public ProtectionRegenTask GetProtectionRegenTask(BlockLocation blockLocation) {
   for (BlockLocation location : protectionRegenTasks.keySet()) {
     if (location.isLocation(blockLocation)) {
       return protectionRegenTasks.get(location);
     }
   }
   return null;
 }
コード例 #2
0
ファイル: TownyUniverse.java プロジェクト: MrNaikito/towny
 public boolean hasProtectionRegenTask(BlockLocation blockLocation) {
   for (BlockLocation location : protectionRegenTasks.keySet()) {
     if (location.isLocation(blockLocation)) {
       return true;
     }
   }
   return false;
 }