Fixed rituals not correctly re-activating when taking off a redstone signal after reloading the world.
This commit is contained in:
parent
34a9b5a7ec
commit
19bf728da3
|
@ -22,12 +22,13 @@ public class Constants
|
||||||
public static final String X_COORD = "xCoord";
|
public static final String X_COORD = "xCoord";
|
||||||
public static final String Y_COORD = "yCoord";
|
public static final String Y_COORD = "yCoord";
|
||||||
public static final String Z_COORD = "zCoord";
|
public static final String Z_COORD = "zCoord";
|
||||||
public static final String PORTAL_LOCATION ="portalLocation";
|
public static final String PORTAL_LOCATION = "portalLocation";
|
||||||
public static final String ORB_TIER = "orbTier";
|
public static final String ORB_TIER = "orbTier";
|
||||||
public static final String CURRENT_ESSENCE = "currentEssence";
|
public static final String CURRENT_ESSENCE = "currentEssence";
|
||||||
public static final String CURRENT_RITUAL = "currentRitual";
|
public static final String CURRENT_RITUAL = "currentRitual";
|
||||||
public static final String CURRENT_RITUAL_TAG = "currentRitualTag";
|
public static final String CURRENT_RITUAL_TAG = "currentRitualTag";
|
||||||
public static final String IS_RUNNING = "isRunning";
|
public static final String IS_RUNNING = "isRunning";
|
||||||
|
public static final String IS_REDSTONED = "isStoned";
|
||||||
public static final String RUNTIME = "runtime";
|
public static final String RUNTIME = "runtime";
|
||||||
public static final String DIRECTION = "direction";
|
public static final String DIRECTION = "direction";
|
||||||
public static final String REAGENT_TANKS = "reagentTanks";
|
public static final String REAGENT_TANKS = "reagentTanks";
|
||||||
|
|
|
@ -93,6 +93,7 @@ public class TileMasterRitualStone extends TileEntity implements IMasterRitualSt
|
||||||
active = tag.getBoolean(Constants.NBT.IS_RUNNING);
|
active = tag.getBoolean(Constants.NBT.IS_RUNNING);
|
||||||
activeTime = tag.getInteger(Constants.NBT.RUNTIME);
|
activeTime = tag.getInteger(Constants.NBT.RUNTIME);
|
||||||
direction = EnumFacing.VALUES[tag.getInteger(Constants.NBT.DIRECTION)];
|
direction = EnumFacing.VALUES[tag.getInteger(Constants.NBT.DIRECTION)];
|
||||||
|
redstoned = tag.getBoolean(Constants.NBT.IS_REDSTONED);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -111,6 +112,7 @@ public class TileMasterRitualStone extends TileEntity implements IMasterRitualSt
|
||||||
tag.setBoolean(Constants.NBT.IS_RUNNING, isActive());
|
tag.setBoolean(Constants.NBT.IS_RUNNING, isActive());
|
||||||
tag.setInteger(Constants.NBT.RUNTIME, getActiveTime());
|
tag.setInteger(Constants.NBT.RUNTIME, getActiveTime());
|
||||||
tag.setInteger(Constants.NBT.DIRECTION, direction.getIndex());
|
tag.setInteger(Constants.NBT.DIRECTION, direction.getIndex());
|
||||||
|
tag.setBoolean(Constants.NBT.IS_REDSTONED, redstoned);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue