Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -54,8 +54,12 @@ public class PartCraftingTerminal extends PartTerminal
super.getDrops( drops, wrenched );
for( ItemStack is : this.craftingGrid )
{
if( is != null )
{
drops.add( is );
}
}
}
@Override
@@ -86,7 +90,9 @@ public class PartCraftingTerminal extends PartTerminal
}
if( GuiBridge.GUI_CRAFTING_TERMINAL.hasPermissions( this.getHost().getTile(), x, y, z, this.side, p ) )
{
return GuiBridge.GUI_CRAFTING_TERMINAL;
}
return GuiBridge.GUI_ME;
}
@@ -100,7 +106,9 @@ public class PartCraftingTerminal extends PartTerminal
public IInventory getInventoryByName( String name )
{
if( name.equals( "crafting" ) )
{
return this.craftingGrid;
}
return super.getInventoryByName( name );
}
}