diff --git a/core/src/mindustry/world/blocks/production/AttributeSmelter.java b/core/src/mindustry/world/blocks/production/AttributeSmelter.java index 405f830d2d..987b14e63b 100644 --- a/core/src/mindustry/world/blocks/production/AttributeSmelter.java +++ b/core/src/mindustry/world/blocks/production/AttributeSmelter.java @@ -49,10 +49,10 @@ public class AttributeSmelter extends GenericSmelter{ } @Override - public void placed(){ - super.placed(); + public void onProximityUpdate(){ + super.onProximityUpdate(); attrsum = sumAttribute(attribute, tile.x, tile.y); } } -} \ No newline at end of file +}