This commit is contained in:
AlgorithmX2 2014-05-07 20:54:49 -05:00
commit 39282b8e14
7 changed files with 31 additions and 2 deletions

View file

@ -10,6 +10,10 @@ public class FlipableIcon implements IIcon
boolean flip_v;
public FlipableIcon(IIcon o) {
if ( o == null )
throw new RuntimeException( "Cannot create a wrapper icon with a null icon." );
original = o;
flip_u = false;
flip_v = false;

View file

@ -10,6 +10,10 @@ public class FullIcon implements IIcon
private IIcon p;
public FullIcon(IIcon o) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
p = o;
}

View file

@ -13,6 +13,10 @@ public class OffsetIcon implements IIcon
private IIcon p;
public OffsetIcon(IIcon o, float x, float y) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
p = o;
offsetX = x;
offsetY = y;

View file

@ -12,6 +12,10 @@ public class TaughtIcon implements IIcon
private IIcon p;
public TaughtIcon(IIcon o, float tightness) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
p = o;
this.tightness = tightness * 0.4f;
}

View file

@ -1,12 +1,15 @@
package appeng.client.texture;
import net.minecraft.init.Blocks;
import net.minecraft.util.IIcon;
public class TmpFlipableIcon extends FlipableIcon
{
private static final IIcon nullIcon = new MissingIcon( Blocks.diamond_block );
public TmpFlipableIcon() {
super( null );
super( nullIcon );
}
public void setOriginal(IIcon i)
@ -14,7 +17,10 @@ public class TmpFlipableIcon extends FlipableIcon
while (i instanceof FlipableIcon)
i = ((FlipableIcon) i).getOriginal();
original = i;
if ( i == null )
original = nullIcon;
else
original = i;
}
}

View file

@ -42,6 +42,9 @@ public class AETrading implements IVillageTradeHandler
private void addMerchent(MerchantRecipeList list, ItemStack item, int emera, Random rand, int greed)
{
if ( item == null )
return;
// Sell
ItemStack From = item.copy();
ItemStack To = new ItemStack( Items.emerald );

View file

@ -361,6 +361,10 @@ public class RecipeHandler implements IRecipeHandler
}
}
if ( token.length() > 0 )
tokens.add( token );
reader.close();
processTokens( loader, path, line );
}