Merge pull request #238 from runelite-extended/bugfix

Remove unused code
This commit is contained in:
Jonathan
2019-05-12 23:38:10 -06:00
committed by GitHub

View File

@@ -112,9 +112,6 @@ public class FightCavePlugin extends Plugin
@Getter(AccessLevel.PACKAGE)
private Map<NPC, NPCContainer> Ignore = new HashMap<>();
private boolean runMage;
private boolean runRange;
@Getter(AccessLevel.PACKAGE)
@Nullable
private JadAttack attack;
@@ -329,13 +326,11 @@ public class FightCavePlugin extends Plugin
if (jad.getAnimation() == JadAttack.MAGIC.getAnimation())
{
attack = JadAttack.MAGIC;
runMage = true;
}
else if (jad.getAnimation() == JadAttack.RANGE.getAnimation())
{
attack = JadAttack.RANGE;
runRange = true;
}
}