diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-08-01 00:57:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-01 00:57:52 +0200 |
commit | 4de3f5f99d1e7c2f77b7369155b8c494a1aa6210 (patch) | |
tree | 7501cf101a2a9f6a8f2d6a9eb9e0b138b9f31e86 | |
parent | fcff1d1713399bbc5321a4aa9450cef2561a672a (diff) |
DB/Misc: Silence few startup errors
By Malcrom
-rw-r--r-- | sql/updates/world/6.x/2016_08_01_00_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/6.x/2016_08_01_00_world.sql b/sql/updates/world/6.x/2016_08_01_00_world.sql new file mode 100644 index 00000000000..24c05ae826d --- /dev/null +++ b/sql/updates/world/6.x/2016_08_01_00_world.sql @@ -0,0 +1,11 @@ +-- Clear errors on some unused gameobjects +DELETE FROM `gameobject_loot_template` WHERE `Entry` IN (753, 2008, 2027, 2229, 3377, 14733, 18156, 20045); +INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(753, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(2008, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(2027, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(2229, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(3377, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(14733, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(18156, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'), +(20045, 38, 0, 100, 0, 0, 0, 1, 1, 'Unused loot Recruit''s Shirt added to clear error. This will be deleted when disables support disable loot'); |