Depreciated BUCKET_VOLUME + removed BP init
This commit is contained in:
parent
7929afd912
commit
85573e46cc
1 changed files with 3 additions and 6 deletions
|
@ -16,7 +16,9 @@ import net.minecraft.src.Block;
|
||||||
import net.minecraft.src.World;
|
import net.minecraft.src.World;
|
||||||
|
|
||||||
public class BuildCraftAPI {
|
public class BuildCraftAPI {
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
// To be removed, see LiquidManager
|
||||||
public static final int BUCKET_VOLUME = 1000;
|
public static final int BUCKET_VOLUME = 1000;
|
||||||
public static final int LAST_ORIGINAL_BLOCK = 122;
|
public static final int LAST_ORIGINAL_BLOCK = 122;
|
||||||
public static final int LAST_ORIGINAL_ITEM = 126;
|
public static final int LAST_ORIGINAL_ITEM = 126;
|
||||||
|
@ -53,10 +55,5 @@ public class BuildCraftAPI {
|
||||||
for (int i = 0; i < softBlocks.length; ++i) {
|
for (int i = 0; i < softBlocks.length; ++i) {
|
||||||
softBlocks[i] = false;
|
softBlocks[i] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize defaults for block properties.
|
|
||||||
for (int i = 0; i < BlueprintManager.blockBptProps.length; ++i) {
|
|
||||||
new BptBlock(i);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue