2014-08-25 23:30:52 +02:00
|
|
|
From 4e8f6f02b5c941a718f1a60e31a198e3ac717cad Mon Sep 17 00:00:00 2001
|
2014-08-19 21:53:21 +02:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Tue, 19 Aug 2014 14:51:28 -0500
|
|
|
|
Subject: [PATCH] Remove invalid mob spawner tile entities
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
index 0423ee9..9454d4f 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
@@ -755,6 +755,11 @@ public class Chunk {
|
|
|
|
this.world.triggerHoppersList.add(tileentity);
|
|
|
|
}
|
|
|
|
// Spigot end
|
|
|
|
+ // PaperSpigot start - Remove invalid mob spawner Tile Entities
|
|
|
|
+ } else if (this.world.paperSpigotConfig.removeInvalidMobSpawnerTEs && tileentity instanceof TileEntityMobSpawner &&
|
|
|
|
+ org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(getType(i, j, k)) != org.bukkit.Material.MOB_SPAWNER) {
|
|
|
|
+ this.tileEntities.remove(chunkposition);
|
|
|
|
+ // PaperSpigot end
|
|
|
|
// CraftBukkit start
|
|
|
|
} else {
|
|
|
|
System.out.println("Attempted to place a tile entity (" + tileentity + ") at " + tileentity.x + "," + tileentity.y + "," + tileentity.z
|
|
|
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
2014-08-25 23:30:52 +02:00
|
|
|
index ce3fb73..753bdda 100644
|
2014-08-19 21:53:21 +02:00
|
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
2014-08-25 23:30:52 +02:00
|
|
|
@@ -171,4 +171,11 @@ public class PaperSpigotWorldConfig
|
|
|
|
waterOverLavaFlowSpeed = getInt( "water-over-lava-flow-speed", 5 );
|
|
|
|
log( "Water over lava flow speed: " + waterOverLavaFlowSpeed);
|
2014-08-19 21:53:21 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean removeInvalidMobSpawnerTEs;
|
|
|
|
+ private void removeInvalidMobSpawnerTEs()
|
|
|
|
+ {
|
|
|
|
+ removeInvalidMobSpawnerTEs = getBoolean( "remove-invalid-mob-spawner-tile-entities", true);
|
|
|
|
+ log( "Remove invalid mob spawner tile entities: " + removeInvalidMobSpawnerTEs );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|