v0.6.2: bugfixes to toxic and fire imbue buffs

This commit is contained in:
Evan Debenham 2017-09-30 15:31:59 -04:00
parent a6d6b7308e
commit aeb53585d1
2 changed files with 7 additions and 4 deletions

View File

@ -66,10 +66,10 @@ public class FireImbue extends Buff {
spend(TICK);
left -= TICK;
if (left < 5){
BuffIndicator.refreshHero();
} else if (left <= 0) {
if (left <= 0){
detach();
} else if (left < 5){
BuffIndicator.refreshHero();
}
return true;

View File

@ -61,8 +61,11 @@ public class ToxicImbue extends Buff {
spend(TICK);
left -= TICK;
if (left <= 0)
if (left <= 0){
detach();
} else if (left < 5){
BuffIndicator.refreshHero();
}
return true;
}