mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 21:57:01 +01:00
Spell/Script: Fix Prison chain for Unworty Initiate
Closes #24089 The spell 54613 is not used in the game
This commit is contained in:
4
sql/updates/world/3.3.5/2020_01_27_00_world.sql
Normal file
4
sql/updates/world/3.3.5/2020_01_27_00_world.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
--
|
||||
DELETE FROM `disables` WHERE `sourceType`=0 AND `entry` IN (54612);
|
||||
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES
|
||||
(0, 54612, 64, '', '', 'Chained Peasant (Chest) LOS');
|
||||
@@ -43,8 +43,7 @@
|
||||
|
||||
enum UnworthyInitiate
|
||||
{
|
||||
SPELL_SOUL_PRISON_CHAIN_SELF = 54612,
|
||||
SPELL_SOUL_PRISON_CHAIN = 54613,
|
||||
SPELL_SOUL_PRISON_CHAIN = 54612,
|
||||
SPELL_DK_INITIATE_VISUAL = 51519,
|
||||
|
||||
SPELL_ICY_TOUCH = 52372,
|
||||
@@ -170,7 +169,6 @@ public:
|
||||
phase = PHASE_TO_EQUIP;
|
||||
|
||||
me->SetStandState(UNIT_STAND_STATE_STAND);
|
||||
me->RemoveAurasDueToSpell(SPELL_SOUL_PRISON_CHAIN_SELF);
|
||||
me->RemoveAurasDueToSpell(SPELL_SOUL_PRISON_CHAIN);
|
||||
|
||||
float z;
|
||||
|
||||
Reference in New Issue
Block a user