From 93fd3c6e188029de3adeeb5dbe3a050cb996b476 Mon Sep 17 00:00:00 2001 From: MEEP of Faith <54301439+MEEPofFaith@users.noreply.github.com> Date: Tue, 8 Jun 2021 11:05:56 -0700 Subject: [PATCH] Allow weapons on Miner units to function. (#5398) `target` shouldn't affect anything because it is unused in `updateMovement()` --- core/src/mindustry/ai/types/MinerAI.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/mindustry/ai/types/MinerAI.java b/core/src/mindustry/ai/types/MinerAI.java index 5e80c52779..89dda32d63 100644 --- a/core/src/mindustry/ai/types/MinerAI.java +++ b/core/src/mindustry/ai/types/MinerAI.java @@ -75,8 +75,4 @@ public class MinerAI extends AIController{ circle(core, unit.type.range / 1.8f); } } - - @Override - protected void updateTargeting(){ - } }