Allow air as an orebfuscator block
This commit is contained in:
parent
8806f91b69
commit
4e47d75136
@ -1,4 +1,4 @@
|
|||||||
From b1f48210131c8ca7b879452ca7b60a4bd578a826 Mon Sep 17 00:00:00 2001
|
From 7fc2e775270cd5909fc9dd80b84c4883a2226df5 Mon Sep 17 00:00:00 2001
|
||||||
From: md_5 <md_5@live.com.au>
|
From: md_5 <md_5@live.com.au>
|
||||||
Date: Thu, 16 May 2013 18:51:05 +1000
|
Date: Thu, 16 May 2013 18:51:05 +1000
|
||||||
Subject: [PATCH] Orebfuscator
|
Subject: [PATCH] Orebfuscator
|
||||||
@ -86,10 +86,10 @@ index 5b0875d..1aca7f6 100644
|
|||||||
public void b(int i, int j, int k, Block block, int l) {
|
public void b(int i, int j, int k, Block block, int l) {
|
||||||
diff --git a/src/main/java/org/spigotmc/AntiXray.java b/src/main/java/org/spigotmc/AntiXray.java
|
diff --git a/src/main/java/org/spigotmc/AntiXray.java b/src/main/java/org/spigotmc/AntiXray.java
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 0000000..8230ff1
|
index 0000000..30280d4
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/src/main/java/org/spigotmc/AntiXray.java
|
+++ b/src/main/java/org/spigotmc/AntiXray.java
|
||||||
@@ -0,0 +1,188 @@
|
@@ -0,0 +1,189 @@
|
||||||
+package org.spigotmc;
|
+package org.spigotmc;
|
||||||
+
|
+
|
||||||
+import gnu.trove.set.TByteSet;
|
+import gnu.trove.set.TByteSet;
|
||||||
@ -122,11 +122,12 @@ index 0000000..8230ff1
|
|||||||
+ {
|
+ {
|
||||||
+ Block block = Block.e( i );
|
+ Block block = Block.e( i );
|
||||||
+ // Check it exists and is not a tile entity
|
+ // Check it exists and is not a tile entity
|
||||||
+ if ( block != null && !block.isTileEntity() )
|
+ if ( block != null && block.isTileEntity() )
|
||||||
+ {
|
+ {
|
||||||
+ // Add it to the set of replacement blocks
|
+ continue;
|
||||||
+ blocks.add( (byte) (int) i );
|
|
||||||
+ }
|
+ }
|
||||||
|
+ // Add it to the set of replacement blocks
|
||||||
|
+ blocks.add( (byte) (int) i );
|
||||||
+ }
|
+ }
|
||||||
+ // Bake it to a flat array of replacements
|
+ // Bake it to a flat array of replacements
|
||||||
+ replacementOres = blocks.toArray();
|
+ replacementOres = blocks.toArray();
|
||||||
|
Loading…
Reference in New Issue
Block a user