fix incorrect totem health

https://www.wowhead.com/tbc/npc=22091/spitfire-totem

70000 > 25000
This commit is contained in:
Grimfeather
2025-10-28 00:58:24 +01:00
committed by GitHub
parent 30984c53bf
commit 02d000e5a0

View File

@@ -70,7 +70,7 @@ public:
switch (spellInfo->Id) switch (spellInfo->Id)
{ {
case 38236: // Caribdis - Spawn Spitfire Totem case 38236: // Caribdis - Spawn Spitfire Totem
spellInfo->Effects[EFFECT_0].BasePoints = 70000; spellInfo->Effects[EFFECT_0].BasePoints = 25000;
break; break;
} }
} }