Skip to content

Commit

Permalink
Save custom name on particular case (#3473)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealSilverMoon authored Nov 12, 2024
1 parent c1a110a commit be3ff58
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,9 @@ public void saveNBTData(NBTTagCompound aNBT) {
if (!con.customName.equals(con.machine.getLocalName()))
conList.setString(con.machineCoord.toString(), con.customName);
}
for (String pos : tempNameList.keySet()) {
conList.setString(pos, tempNameList.get(pos));
}
aNBT.setTag("conList", conList);
}

Expand Down

0 comments on commit be3ff58

Please sign in to comment.