From 82ae378edcb1b2907d7c647bf26b97d834aa6008 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 5 Nov 2019 21:51:58 -0500 Subject: [PATCH] Fixed mech pads not working --- core/src/io/anuke/mindustry/world/blocks/units/MechPad.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/src/io/anuke/mindustry/world/blocks/units/MechPad.java b/core/src/io/anuke/mindustry/world/blocks/units/MechPad.java index 031bf1db42..1c82bed65c 100644 --- a/core/src/io/anuke/mindustry/world/blocks/units/MechPad.java +++ b/core/src/io/anuke/mindustry/world/blocks/units/MechPad.java @@ -44,11 +44,6 @@ public class MechPad extends Block{ stats.add(BlockStat.productionTime, buildTime / 60f, StatUnit.seconds); } - @Override - public boolean shouldConsume(Tile tile){ - return false; - } - @Remote(targets = Loc.both, called = Loc.server) public static void onMechFactoryTap(Player player, Tile tile){ if(player == null || !(tile.block() instanceof MechPad) || !checkValidTap(tile, player)) return;