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
@@ -62,7 +62,7 @@ public class ItemPaintBall extends AEBaseItem
public ModelResourceLocation getModelLocation(
final ItemStack stack )
{
if ( isLumen(stack) )
if ( ItemPaintBall.this.isLumen(stack) )
return sloc;
return loc;
@@ -86,7 +86,7 @@ public class ItemPaintBall extends AEBaseItem
final ItemStack stack,
final int renderPass )
{
final AEColor col = getColor(stack);
final AEColor col = this.getColor(stack);
final int colorValue = stack.getItemDamage() >= 20 ? col.mediumVariant : col.mediumVariant;
final int r = ( colorValue >> 16 ) & 0xff;