We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d3ccf commit d8505eaCopy full SHA for d8505ea
src/main/java/mekanism/common/tile/prefab/TileEntityMultiblock.java
@@ -125,7 +125,11 @@ protected boolean onUpdateServer() {
125
needsPacket = true;
126
}
127
if (multiblock.inventoryID != null) {
128
+ UUID oldCachedID = cachedID;
129
cachedID = multiblock.inventoryID;
130
+ if (oldCachedID != cachedID) {
131
+ markForSave();
132
+ }
133
if (isMaster()) {
134
if (multiblock.tick(level)) {
135
0 commit comments