SteamWar/BauSystem
Archiviert
13
0
Dieser Commit ist enthalten in:
Chaoscaot 2021-03-27 13:39:14 +01:00
Ursprung f3511e7841
Commit 59ff3a9529

Datei anzeigen

@ -182,9 +182,10 @@ public class Detonator implements Listener {
throw new SecurityException("Das Item ist kein Detonator"); throw new SecurityException("Das Item ist kein Detonator");
} }
for (int i = 0; i < getDetoLocs(container) + 1; i++) { for (int i = 0; i < getDetoLocs(container) + 1; i++) {
if (!container.has(new NamespacedKey(BauSystem.getPlugin(), DETO_PREFIX + i), PersistentDataType.INTEGER_ARRAY)) if (!container.has(new NamespacedKey(BauSystem.getPlugin(), DETO_PREFIX + i), PersistentDataType.INTEGER_ARRAY)) {
return i; return i;
} }
}
return -1; return -1;
} }