Add this qualifier

This commit is contained in:
thatsIch
2015-09-30 14:26:54 +02:00
parent efecd4b8c1
commit ebda927fb5
105 changed files with 422 additions and 415 deletions
@@ -93,12 +93,13 @@ public abstract class AppEngPacket implements Packet
PacketCallState caller;
public void setCallParam( final PacketCallState call ){caller = call;}
public void setCallParam( final PacketCallState call ){
this.caller = call;}
@Override
public void processPacket( final INetHandler handler)
{
caller.call(this);
this.caller.call( this );
}
}
@@ -218,7 +218,7 @@ public class PacketNEIRecipe extends AppEngPacket
// If that doesn't work, grab from the player's inventory
if( whichItem == null && playerInventory != null )
{
whichItem = extractItemFromPlayerInventory( player, realForFake, patternItem );
whichItem = this.extractItemFromPlayerInventory( player, realForFake, patternItem );
}
craftMatrix.setInventorySlotContents( x, whichItem );