diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-05-31 11:44:41 +0200 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-05-31 11:45:02 +0200 |
commit | b5443af772f54800321a30cc789cfa6ae85c5188 (patch) | |
tree | 205eb1ecd5b16a716e7b47edd8a5ff720d05b123 | |
parent | 7d4d296e2f60b2d42fe51b92b666238d4513bbd1 (diff) |
DB/Loot: Reassign a reference, fix an error in previous commit with missing @variable
-rw-r--r-- | sql/updates/world/2012_05_30_00_world_reference_loot_template.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2012_05_31_00_world_reference_loot_template.sql | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/2012_05_30_00_world_reference_loot_template.sql b/sql/updates/world/2012_05_30_00_world_reference_loot_template.sql index 7c6dfa1e11f..c2cab663d4a 100644 --- a/sql/updates/world/2012_05_30_00_world_reference_loot_template.sql +++ b/sql/updates/world/2012_05_30_00_world_reference_loot_template.sql @@ -1,4 +1,5 @@ SET @Twins := 34329; +SET @emblem := 49426; DELETE FROM `reference_loot_template` WHERE `entry`=@Twins; INSERT INTO `reference_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES (@Twins,47296,0,1,1,1,1), -- Greaves of Ruthless Judgment diff --git a/sql/updates/world/2012_05_31_00_world_reference_loot_template.sql b/sql/updates/world/2012_05_31_00_world_reference_loot_template.sql new file mode 100644 index 00000000000..03723c82536 --- /dev/null +++ b/sql/updates/world/2012_05_31_00_world_reference_loot_template.sql @@ -0,0 +1,2 @@ +UPDATE `reference_loot_template` SET `entry`=14011 WHERE `entry`=3014; +UPDATE `creature_loot_template` SET `mincountOrRef`=-14011 WHERE `mincountOrRef`=-3014; |