From 87b76b4101b2b4447bc69b9bcac96f6deea72233 Mon Sep 17 00:00:00 2001 From: Cheeserolls Date: Sat, 11 Apr 2015 14:38:37 +0100 Subject: [PATCH] Correct some misleading errors in comments --- .../java/biomesoplenty/common/block/BlockBOPHalfWoodSlab.java | 2 +- src/main/java/biomesoplenty/common/block/BlockBOPLog.java | 2 +- src/main/java/biomesoplenty/common/block/BlockBOPPlanks.java | 2 +- src/main/java/biomesoplenty/common/block/BlockBOPSapling.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPHalfWoodSlab.java b/src/main/java/biomesoplenty/common/block/BlockBOPHalfWoodSlab.java index 075c5e19a..00141be48 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPHalfWoodSlab.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPHalfWoodSlab.java @@ -28,7 +28,7 @@ public abstract class BlockBOPHalfWoodSlab extends BlockSlab implements IBOPBloc // setup paged variant property - // STAGE require one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance + // HALF requires one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance public static final int VARIANTS_PER_PAGE = 8; // child classes must implement to define their page number abstract public int getPageNum(); diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPLog.java b/src/main/java/biomesoplenty/common/block/BlockBOPLog.java index b019a0e39..cd04def9a 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPLog.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPLog.java @@ -24,7 +24,7 @@ public abstract class BlockBOPLog extends BlockLog implements IBOPBlock // setup paged variant property - // STAGE require one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance + // LOG_AXIS requires two bits, so we have 2 bits left for the VARIANT which means we can have four per instance public static final int VARIANTS_PER_PAGE = 4; // child classes must implement to define their page number abstract public int getPageNum(); diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPPlanks.java b/src/main/java/biomesoplenty/common/block/BlockBOPPlanks.java index dbff46bb5..f0cd92cf1 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPPlanks.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPPlanks.java @@ -25,7 +25,7 @@ public abstract class BlockBOPPlanks extends Block implements IBOPBlock // setup paged variant property - // STAGE require one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance + // All 4 meta bits available for the VARIANT which means we can have sixteen per instance public static final int VARIANTS_PER_PAGE = 16; // child classes must implement to define their page number abstract public int getPageNum(); diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPSapling.java b/src/main/java/biomesoplenty/common/block/BlockBOPSapling.java index 0392a5cc0..2fca6cac0 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPSapling.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPSapling.java @@ -34,7 +34,7 @@ public abstract class BlockBOPSapling extends BlockDecoration implements IGrowab // setup paged variant property - // STAGE require one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance + // STAGE requires one bit, so we have 3 bits left for the VARIANT which means we can have eight per instance public static final int VARIANTS_PER_PAGE = 8; // child classes must implement to define their page number abstract public int getPageNum();