Skip to content

Commit

Permalink
Remove testing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruling-0 committed Jan 17, 2025
1 parent 10ddb67 commit de8ef1b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/mods/natura/blocks/NSlabBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,13 @@ public boolean isFlammable(IBlockAccess world, int x, int y, int z, ForgeDirecti
@SideOnly(Side.CLIENT)
public void getSubBlocks(Item id, CreativeTabs tab, List list) {
if (group == 1) {
//if (id != Item.getItemFromBlock(NContent.plankSlab1Double)) {
for (int iter = 0; iter < 8; iter++) {
list.add(new ItemStack(id, 1, iter));
}
//}
} else {
//if (id != Item.getItemFromBlock(NContent.plankSlab2Double)) {
for (int iter = 0; iter < 5; iter++) {
list.add(new ItemStack(id, 1, iter));
}
//}
}
}

Expand Down

0 comments on commit de8ef1b

Please sign in to comment.