Skip to content

Commit

Permalink
Revert "delayed freeze effect of elemental blast to take effect after…
Browse files Browse the repository at this point in the history
… damage is inflicted instead of before."

This reverts commit 640fb20
  • Loading branch information
Zrp200 committed Sep 6, 2021
1 parent 718ca5c commit 9e176da
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import com.zrp200.rkpd2.actors.buffs.Burning;
import com.zrp200.rkpd2.actors.buffs.Charm;
import com.zrp200.rkpd2.actors.buffs.Corrosion;
import com.zrp200.rkpd2.actors.buffs.FlavourBuff;
import com.zrp200.rkpd2.actors.buffs.Frost;
import com.zrp200.rkpd2.actors.buffs.Invisibility;
import com.zrp200.rkpd2.actors.buffs.Light;
Expand Down Expand Up @@ -282,13 +281,7 @@ public void call() {
//*** Wand of Frost ***
} else if (finalWandCls == WandOfFrost.class){
if (mob.isAlive() && mob.alignment != Char.Alignment.ALLY) {
new FlavourBuff(){
{actPriority = VFX_PRIO;}
@Override public boolean act() {
Buff.affect( target, Frost.class, effectMulti*Frost.DURATION );
return super.act();
}
}.attachTo(mob);
Buff.affect( mob, Frost.class, effectMulti*Frost.DURATION );
}

//*** Wand of Prismatic Light ***
Expand Down

0 comments on commit 9e176da

Please sign in to comment.