Merge pull request #1671 from WooxSolo/cannonball-count-fix

Fix cannon cannonball count
This commit is contained in:
Adam
2018-04-19 22:28:53 -04:00
committed by GitHub

View File

@@ -67,7 +67,6 @@ import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
public class CannonPlugin extends Plugin
{
private static final Pattern NUMBER_PATTERN = Pattern.compile("([0-9]+)");
private static final int MAX_CBALLS = 30;
private CannonCounter counter;
@@ -236,16 +235,7 @@ public class CannonPlugin extends Plugin
if (m.find())
{
int amt = Integer.valueOf(m.group());
// make sure cballs doesn't go above MAX_CBALLS
if (amt + cballsLeft > MAX_CBALLS)
{
cballsLeft = MAX_CBALLS;
}
else
{
cballsLeft += amt;
}
cballsLeft += amt;
}
}
@@ -256,8 +246,6 @@ public class CannonPlugin extends Plugin
if (event.getMessage().contains("Your cannon is out of ammo!"))
{
cballsLeft = 0;
if (config.showEmptyCannonNotification())
{
notifier.notify("Your cannon is out of ammo!");