Przeglądaj źródła

fixed instantaneous cobblestone generation

linus122 6 lat temu
rodzic
commit
d459e78efa
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      src/de/Linus122/customoregen/Events.java
  2. 1 1
      src/plugin.yml

+ 1 - 1
src/de/Linus122/customoregen/Events.java

@@ -20,7 +20,7 @@ public class Events implements Listener {
 		}
 		
 		int id = event.getBlock().getTypeId();
-		if ((id >= 8) && (id <= 11)) {
+		if ((id >= 8) && (id <= 11) && id != 9) {
 			Block b = event.getToBlock();
 			int toid = b.getTypeId();
 			if ((toid == 0) && (generatesCobble(id, b))) {

+ 1 - 1
src/plugin.yml

@@ -1,5 +1,5 @@
 name: CustomOreGen
-version: 1.2.39
+version: 1.2.40
 description: Controls the Ore-Generator
 author: Linus122
 softdepend: [ASkyBlock, AcidIsland, uSkyBlock]