fix(DB/creature_loot_template): Remove loot on creatures that shouldn't have loot (#4718)

Co-authored-by: T1ti <T1ti@users.noreply.github.com>
This commit is contained in:
Silker 2021-03-05 12:17:02 -06:00 committed by GitHub
parent db6018aa38
commit a269c51d51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,8 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1614920824592458800');
DELETE FROM creature_loot_template WHERE Entry IN
(235, 240, 246, 255, 341, 358, 2055, 2436, 2870, 3388, 3659, 3990, 4033, 5433, 5440, 6013, 6019, 6047, 6086, 6087, 6141, 6492, 7395, 8397, 10388, 10389, 10684, 10698, 10951, 11669, 11718, 12099, 12426, 15387, 15623);
UPDATE `creature_template` SET `lootid`= 0 WHERE `entry` IN
(235, 240, 246, 255, 341, 358, 2055, 2436, 2870, 3388, 3659, 3990, 4033, 5433, 5440, 6013, 6019, 6047, 6086, 6087, 6141, 6492, 7395, 8397, 10388, 10389, 10684, 10698, 10951, 11669, 11718, 12099, 12426, 15387, 15623);