diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2019-06-12 17:31:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-12 17:31:22 +0200 |
commit | b61eafb43b7802112a086fe5d153b339107e7c4c (patch) | |
tree | c89656ceec59b14ee516d6c85f453c285e35c3e6 | |
parent | 138e822d859fd9ff9d79e1ce16823992ad43aec4 (diff) |
DB/Loot: Fix self-reference issue
by killradio
Fixes one infinite loop crash when milling / prospecting some cata > herbs / veins
cherry pick of https://gitlab.com/trinitycore/TrinityCore_434/commit/71f693529eccf96fd867c2fbf7cf54048f930056
-rw-r--r-- | sql/updates/world/master/2019_06_12_00_world.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2019_06_12_00_world.sql b/sql/updates/world/master/2019_06_12_00_world.sql new file mode 100644 index 00000000000..3ab9592552e --- /dev/null +++ b/sql/updates/world/master/2019_06_12_00_world.sql @@ -0,0 +1,2 @@ +-- Fix self-reference issue +UPDATE `reference_loot_template` SET `Reference` = 0 WHERE `Entry` IN (11919,11920,11921,13006,13007,13008,13009,13010); |