From 5e6577c01378494587983ed79972dd64b7299f86 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 2 Oct 2023 13:27:10 -0400 Subject: [PATCH] v2.2.0: crystal wisp ranged attack is now affected by antimagic --- .../shatteredpixeldungeon/items/armor/glyphs/AntiMagic.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/AntiMagic.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/AntiMagic.java index df2967036..5936c5afe 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/AntiMagic.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/AntiMagic.java @@ -31,6 +31,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Weakness; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.abilities.duelist.ElementalStrike; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.abilities.mage.ElementalBlast; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.abilities.mage.WarpBeacon; +import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.CrystalWisp; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.DM100; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Eye; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Shaman; @@ -105,6 +106,7 @@ public class AntiMagic extends Armor.Glyph { RESISTS.add( DM100.LightningBolt.class ); RESISTS.add( Shaman.EarthenBolt.class ); + RESISTS.add( CrystalWisp.LightBeam.class ); RESISTS.add( Warlock.DarkBolt.class ); RESISTS.add( Eye.DeathGaze.class ); RESISTS.add( YogFist.BrightFist.LightBeam.class );