From 85573e46ccbac4471ae53bf83bfad5202f6474ce Mon Sep 17 00:00:00 2001 From: CovertJaguar Date: Tue, 28 Aug 2012 02:51:26 -0700 Subject: [PATCH] Depreciated BUCKET_VOLUME + removed BP init --- common/buildcraft/api/core/BuildCraftAPI.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/common/buildcraft/api/core/BuildCraftAPI.java b/common/buildcraft/api/core/BuildCraftAPI.java index 1c1ad34b..adeeb84b 100644 --- a/common/buildcraft/api/core/BuildCraftAPI.java +++ b/common/buildcraft/api/core/BuildCraftAPI.java @@ -16,7 +16,9 @@ import net.minecraft.src.Block; import net.minecraft.src.World; public class BuildCraftAPI { - + + @Deprecated + // To be removed, see LiquidManager public static final int BUCKET_VOLUME = 1000; public static final int LAST_ORIGINAL_BLOCK = 122; public static final int LAST_ORIGINAL_ITEM = 126; @@ -53,10 +55,5 @@ public class BuildCraftAPI { for (int i = 0; i < softBlocks.length; ++i) { softBlocks[i] = false; } - - // Initialize defaults for block properties. - for (int i = 0; i < BlueprintManager.blockBptProps.length; ++i) { - new BptBlock(i); - } } }