fix quarry frame icon not rendering when building frame

This commit is contained in:
asiekierka 2015-09-30 14:25:27 +02:00
parent 3f6fafb4a3
commit 2ff0d03b97
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,4 @@
Bugs fixed:
* Creative Engines only outputting 1/5th the advertised RF/t (asie)
* Frame icon not rendering on Quarry Frame building (asie)

View file

@ -25,4 +25,12 @@ public class SchematicFree extends SchematicBlock {
public void storeRequirements(IBuilderContext context, int x, int y, int z) {
// cancel requirements reading
}
@Override
public LinkedList<ItemStack> getStacksToDisplay(
LinkedList<ItemStack> stackConsumed) {
LinkedList<ItemStack> displayStacks = new LinkedList<ItemStack>();
displayStacks.add(new ItemStack(block, 1, meta));
return displayStacks;
}
}