From 936f151a72bf87fc5de519eac43d1db6058223bf Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Fri, 5 Apr 2024 21:12:18 -0500 Subject: [PATCH] shadowmantle duration reduced to 10 seconds --- src/engine/powers/poweractions/ApplyEffectPowerAction.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/engine/powers/poweractions/ApplyEffectPowerAction.java b/src/engine/powers/poweractions/ApplyEffectPowerAction.java index a9eb6c89..08bbf353 100644 --- a/src/engine/powers/poweractions/ApplyEffectPowerAction.java +++ b/src/engine/powers/poweractions/ApplyEffectPowerAction.java @@ -89,6 +89,8 @@ public class ApplyEffectPowerAction extends AbstractPowerAction { // duration = (int)pb.getChantDuration() * 1000; // else duration = ab.getDuration(trains); + if(ab.stackType.equals("BMHealing")) + duration = 10000; String stackType = ab.getStackType(); if (stackType.equals("WeaponMove")) { DeferredPowerJob eff = new DeferredPowerJob(source, awo, stackType, trains, ab, pb, this.effect, this);