diff options
| author | Killyana <morphone1@gmail.com> | 2019-03-07 16:15:45 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-11-24 20:35:18 +0100 |
| commit | a6cc954644485d635874d7d4ab38d668e1ea8e0a (patch) | |
| tree | b9cb90908428fc8fac7ff417921313d396c9914a | |
| parent | 600d3036fcc892e442770ad7a10ce333f8a58600 (diff) | |
DB/SAI: Fix On aggro and On Death talk text triggered in the target instead of the unit
Fixes runtime DB errors like : CreatureTextMgr: Could not find Text for Creature Wyrmrest Temple Drake (Entry 26925, GUID 130995) in 'creature_text' table. Ignoring.
(cherry picked from commit 3bc1900018fd38d23e656237e751cbe1ebb8552d)
| -rw-r--r-- | sql/updates/world/master/2021_11_24_25_world_2019_03_07_00_world.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_24_25_world_2019_03_07_00_world.sql b/sql/updates/world/master/2021_11_24_25_world_2019_03_07_00_world.sql new file mode 100644 index 00000000000..9ca6dc726a7 --- /dev/null +++ b/sql/updates/world/master/2021_11_24_25_world_2019_03_07_00_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `action_param3`=1 WHERE `event_type` IN (4,6) AND `action_type` = 1 AND `target_type` IN (7,2) AND `source_type`=0; |
