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 fd189cd commit c62f30bCopy full SHA for c62f30b
src/main/java/mekanism/common/tile/base/TileEntityMekanism.java
@@ -840,6 +840,12 @@ protected void applyImplicitComponents(@NotNull BlockEntity.DataComponentInput i
840
if (supportsRedstone()) {
841
setControlType(input.getOrDefault(MekanismDataComponents.REDSTONE_CONTROL, getControlType()));
842
}
843
+ if (supportsUpgrades()) {
844
+ //Recalculate upgrades after applying components
845
+ for (Upgrade upgrade : getSupportedUpgrade()) {
846
+ recalculateUpgrades(upgrade);
847
+ }
848
849
850
851
@Override
0 commit comments