summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/config/magic.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt
index 77c14a43e..2825f3830 100644
--- a/npc/config/magic.txt
+++ b/npc/config/magic.txt
@@ -131,6 +131,9 @@ function script SummonMagic {
// All summons can suffer knockback
if (.@opt & MD_NOKNOCKBACK)
.@opt=.@opt^MD_NOKNOCKBACK;
+ // Strip summons from BOSS mode and immunity
+ if (.@opt & MD_BOSS)
+ .@opt=.@opt^MD_BOSS;
// Save new options
setunitdata(.@mods, UDT_MODE, .@opt);
}