From 4103cb4b1ba298129125f85f757fbb77d638b7eb Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 01:33:32 +0200 Subject: [PATCH] Typo painte --- items/tools/powered/ToolColorApplicator.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/items/tools/powered/ToolColorApplicator.java b/items/tools/powered/ToolColorApplicator.java index 601ac2c69..27df65c92 100644 --- a/items/tools/powered/ToolColorApplicator.java +++ b/items/tools/powered/ToolColorApplicator.java @@ -250,12 +250,12 @@ public class ToolColorApplicator extends AEBasePoweredItem implements IStorageCe // clean paint balls.. Block testBlk = w.getBlock( x + oside.offsetX, y + oside.offsetY, z + oside.offsetZ ); - TileEntity painte = w.getTileEntity( x + oside.offsetX, y + oside.offsetY, z + oside.offsetZ ); - if ( getAECurrentPower( is ) > powerPerUse && testBlk instanceof BlockPaint && painte instanceof TilePaint ) + TileEntity painted = w.getTileEntity( x + oside.offsetX, y + oside.offsetY, z + oside.offsetZ ); + if ( getAECurrentPower( is ) > powerPerUse && testBlk instanceof BlockPaint && painted instanceof TilePaint ) { inv.extractItems( AEItemStack.create( paintBall ), Actionable.MODULATE, new BaseActionSource() ); extractAEPower( is, powerPerUse ); - ((TilePaint) painte).cleanSide( oside.getOpposite() ); + ((TilePaint) painted).cleanSide( oside.getOpposite() ); return true; } }