Skip to content

Commit

Permalink
Relay loading mapped to wrong lists
Browse files Browse the repository at this point in the history
  • Loading branch information
CSX8600 committed Sep 2, 2019
1 parent 5608c1d commit 4d63332
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


version = "0.0.7"
version = "0.0.8a"
group = "com.clussmanproductions.trafficcontrol" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "trafficcontrol"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Mod(modid = ModTrafficControl.MODID, version = ModTrafficControl.VERSION, name = "Traffic Control", useMetadata = true)
public class ModTrafficControl {
public static final String MODID = "trafficcontrol";
public static final String VERSION = "0.0.7";
public static final String VERSION = "0.0.8a";
public static boolean IR_INSTALLED = false;
public static CreativeTabs CREATIVE_TAB = new CreativeTabs("Traffic Control") {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public void readFromNBT(NBTTagCompound compound) {
// Bell information
alreadyNotifiedBells = compound.getBoolean("alreadynotifiedbells");

fillArrayListFromNBT("lamps", bellLocations, compound);
fillArrayListFromNBT("gate", bellLocations, compound);
fillArrayListFromNBT("lamps", crossingLampLocations, compound);
fillArrayListFromNBT("gate", crossingGateLocations, compound);
fillArrayListFromNBT("bell", bellLocations, compound);
fillArrayListFromNBT("wigwags", wigWagLocations, compound);
fillArrayListFromNBT("shuntBorder", shuntBorderLocations, compound);
Expand Down

0 comments on commit 4d63332

Please sign in to comment.