Pushing changes in 1.7.2 to 1.6.4 build
This commit is contained in:
parent
a4a02b4118
commit
fa9112493c
170 changed files with 4803 additions and 272 deletions
|
@ -13,6 +13,7 @@ public class TEMasterStone extends TileEntity
|
|||
private int currentRitual;
|
||||
private boolean isActive;
|
||||
private String owner;
|
||||
private String varString1;
|
||||
private int cooldown;
|
||||
private int var1;
|
||||
private int direction;
|
||||
|
@ -37,6 +38,7 @@ public class TEMasterStone extends TileEntity
|
|||
cooldown = par1NBTTagCompound.getInteger("cooldown");
|
||||
var1 = par1NBTTagCompound.getInteger("var1");
|
||||
direction = par1NBTTagCompound.getInteger("direction");
|
||||
varString1 = par1NBTTagCompound.getString("varString1");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -49,6 +51,7 @@ public class TEMasterStone extends TileEntity
|
|||
par1NBTTagCompound.setInteger("cooldown", cooldown);
|
||||
par1NBTTagCompound.setInteger("var1", var1);
|
||||
par1NBTTagCompound.setInteger("direction", direction);
|
||||
par1NBTTagCompound.setString(varString1, "varString1");
|
||||
}
|
||||
|
||||
public void activateRitual(World world, int crystalLevel)
|
||||
|
@ -180,6 +183,16 @@ public class TEMasterStone extends TileEntity
|
|||
{
|
||||
return this.var1;
|
||||
}
|
||||
|
||||
public void setVarString1(String newVar)
|
||||
{
|
||||
this.varString1 = newVar;
|
||||
}
|
||||
|
||||
public String getVarString1()
|
||||
{
|
||||
return this.varString1;
|
||||
}
|
||||
|
||||
public void setActive(boolean active)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue