SteamWar/BauSystem
Archiviert
13
0

Hotfix MovingTNTBlock

Dieser Commit ist enthalten in:
jojo 2021-02-04 10:25:54 +01:00
Ursprung 0cab286774
Commit 7a356b7f28

Datei anzeigen

@ -56,7 +56,7 @@ public class CommandFreeze extends RegionToggleCommand {
public void onEntitySpawn(EntitySpawnEvent e) { public void onEntitySpawn(EntitySpawnEvent e) {
if (!Region.getRegion(e.getLocation()).isFreeze()) return; if (!Region.getRegion(e.getLocation()).isFreeze()) return;
e.setCancelled(true); e.setCancelled(true);
if (Core.getVersion() == 12 && e.getEntityType() == EntityType.PRIMED_TNT) { if (e.getEntityType() == EntityType.PRIMED_TNT) {
Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> { Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> {
e.getLocation().getBlock().setType(Material.TNT, false); e.getLocation().getBlock().setType(Material.TNT, false);
}, 1L); }, 1L);