mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-05 18:20:24 -08:00
fix(DB/Condition): Solve continuous despawn issue with Alliance Steam Tank. (#23988)
This commit is contained in:
parent
0368276fca
commit
426384d59d
1 changed files with 5 additions and 0 deletions
5
data/sql/updates/pending_db_world/Steam_tank.sql
Normal file
5
data/sql/updates/pending_db_world/Steam_tank.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
-- Event occours only if a player dismount.
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 22) AND (`SourceGroup` = 6) AND (`SourceEntry` = 27587) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 32) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 16) AND (`ConditionValue2` = 0) AND (`ConditionValue3` = 0);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(22, 6, 27587, 0, 0, 32, 0, 16, 0, 0, 0, 0, 0, '', 'Event occours only if a player dismount.');
|
||||
Loading…
Add table
Add a link
Reference in a new issue