Finished the pillar but rearranged the .json for testing

This commit is contained in:
WayofTime 2016-09-04 21:25:32 -04:00
parent 1286efbca7
commit f1b3d6f4bc
4 changed files with 43 additions and 22 deletions

View file

@ -17,7 +17,7 @@ import WayofTime.bloodmagic.client.IVariantProvider;
public class BlockDemonPillar extends BlockStringPillar implements IVariantProvider
{
public static final String[] names = new String[] { "raw", "corrosive" };
public static final String[] names = new String[] { "raw", "corrosive", "destructive", "vengeful", "steadfast" };
public BlockDemonPillar(String baseName, Material materialIn)
{
@ -43,7 +43,7 @@ public class BlockDemonPillar extends BlockStringPillar implements IVariantProvi
{
for (int j = 0; j < names.length; j++)
{
ret.add(new ImmutablePair<Integer, String>(i * 4 + j, "axis=" + axis[i] + ",type=" + names[j]));
ret.add(new ImmutablePair<Integer, String>(i * 5 + j, "axis=" + axis[i] + ",type=" + names[j]));
}
}