From ac25e172865559e402eee8dca2e2823d3fc622da Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 14 Jul 2021 16:06:03 -0400 Subject: [PATCH] Unused property cleanup --- core/src/mindustry/content/Blocks.java | 1 - core/src/mindustry/world/blocks/environment/Floor.java | 2 -- 2 files changed, 3 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 5971ae6bde..fcadf439f9 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -235,7 +235,6 @@ public class Blocks implements ContentList{ magmarock = new Floor("magmarock"){{ attributes.set(Attribute.heat, 0.75f); attributes.set(Attribute.water, -0.75f); - updateEffect = Fx.magmasmoke; blendGroup = basalt; emitLight = true; diff --git a/core/src/mindustry/world/blocks/environment/Floor.java b/core/src/mindustry/world/blocks/environment/Floor.java index 762a5e4f9d..9bb4cc5aed 100644 --- a/core/src/mindustry/world/blocks/environment/Floor.java +++ b/core/src/mindustry/world/blocks/environment/Floor.java @@ -52,8 +52,6 @@ public class Floor extends Block{ public boolean playerUnmineable = false; /** Group of blocks that this block does not draw edges on. */ public Block blendGroup = this; - /** Effect displayed when randomly updated. */ - public Effect updateEffect = Fx.none; /** Array of affinities to certain things. */ public Attributes attributes = new Attributes(); /** Whether this ore generates in maps by default. */