From b23d35797b89fc4c652ab2ae264ddcea85aa1c2c Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 21 Aug 2020 20:45:29 -0400 Subject: [PATCH] Fixed #2396 --- .../mindustry/world/blocks/production/AttributeSmelter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +}