v3.2.0: fixed shuriken instant throw not triggering in some cases
This commit is contained in:
@@ -55,8 +55,8 @@ public class Shuriken extends MissileWeapon {
|
||||
}
|
||||
|
||||
@Override
|
||||
public float delayFactor(Char owner) {
|
||||
return owner.buff(ShurikenInstantTracker.class) != null ? super.delayFactor(owner) : 0;
|
||||
public float castDelay(Char user, int cell) {
|
||||
return user.buff(ShurikenInstantTracker.class) != null ? super.castDelay(user, cell) : 0;
|
||||
}
|
||||
|
||||
public static class ShurikenInstantTracker extends FlavourBuff {
|
||||
|
||||
Reference in New Issue
Block a user