Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
@@ -39,8 +39,8 @@ public class ItemPaintBall extends AEBaseItem
public ItemPaintBall() {
super( ItemPaintBall.class );
setFeature( EnumSet.of( AEFeature.PaintBalls ) );
hasSubtypes = true;
this.setFeature( EnumSet.of( AEFeature.PaintBalls ) );
this.hasSubtypes = true;
if ( Platform.isClient() )
MinecraftForgeClient.registerItemRenderer( this, new PaintBallRender() );
}
@@ -48,12 +48,12 @@ public class ItemPaintBall extends AEBaseItem
@Override
public String getItemStackDisplayName(ItemStack is)
{
return super.getItemStackDisplayName( is ) + " - " + getExtraName( is );
return super.getItemStackDisplayName( is ) + " - " + this.getExtraName( is );
}
public String getExtraName(ItemStack is)
{
return (is.getItemDamage() >= 20 ? GuiText.Lumen.getLocal() + ' ' : "") + getColor( is );
return (is.getItemDamage() >= 20 ? GuiText.Lumen.getLocal() + ' ' : "") + this.getColor( is );
}
public AEColor getColor(ItemStack is)