Make sure to include up to, and including, meta 15 for facade generation (black wool)
This commit is contained in:
parent
aad0e4f394
commit
b528468f99
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ public class ItemFacade extends ItemBuildCraft {
|
|||
ItemStack base = new ItemStack(b, 1);
|
||||
if (base.getHasSubtypes()) {
|
||||
Set<String> names = Sets.newHashSet();
|
||||
for (int meta = 0; meta < 15; meta++) {
|
||||
for (int meta = 0; meta <= 15; meta++) {
|
||||
ItemStack is = new ItemStack(b, 1, meta);
|
||||
if (!Strings.isNullOrEmpty(is.getItemName()) && names.add(is.getItemName())) {
|
||||
ItemFacade.addFacade(is);
|
||||
|
|
Loading…
Reference in a new issue