Merge pull request #330 from Grimfeather/fix-SQL-syntax-errors

Update optional_item_stack_sizes.sql - fix SQL syntax errors
This commit is contained in:
ZhengPeiRu21
2024-08-15 18:05:16 -06:00
committed by GitHub

View File

@@ -919,10 +919,10 @@ UPDATE item_template SET stackable = 10 WHERE entry=18594;
UPDATE item_template SET stackable = 2 WHERE entry=18640; UPDATE item_template SET stackable = 2 WHERE entry=18640;
/* Combat Healing Potion */ /* Combat Healing Potion */
UPDATE item_template SET stackable = 5 SET maxcount = 5 WHERE entry=18839; UPDATE item_template SET stackable = 5, maxcount = 5 WHERE entry=18839;
/* Combat Mana Potion */ /* Combat Mana Potion */
UPDATE item_template SET stackable = 5 SET maxcount = 5 WHERE entry=18841; UPDATE item_template SET stackable = 5, maxcount = 5 WHERE entry=18841;
/* Ace of Beasts */ /* Ace of Beasts */
UPDATE item_template SET stackable = 1 WHERE entry=19227; UPDATE item_template SET stackable = 1 WHERE entry=19227;
@@ -1036,13 +1036,13 @@ UPDATE item_template SET stackable = 5 WHERE entry=20008;
UPDATE item_template SET stackable = 20 WHERE entry=20404; UPDATE item_template SET stackable = 20 WHERE entry=20404;
/* Warsong Gulch Mark of Honor */ /* Warsong Gulch Mark of Honor */
UPDATE item_template SET stackable = 20 SET maxcount = 20 WHERE entry=20558; UPDATE item_template SET stackable = 20, maxcount = 20 WHERE entry=20558;
/* Arathi Basin Mark of Honor */ /* Arathi Basin Mark of Honor */
UPDATE item_template SET stackable = 20 SET maxcount = 20 WHERE entry=20559; UPDATE item_template SET stackable = 20, maxcount = 20 WHERE entry=20559;
/* Alterac Valley Mark of Honor */ /* Alterac Valley Mark of Honor */
UPDATE item_template SET stackable = 20 SET maxcount = 20 WHERE entry=20560; UPDATE item_template SET stackable = 20, maxcount = 20 WHERE entry=20560;
/* Nexus Crystal */ /* Nexus Crystal */
UPDATE item_template SET stackable = 10 WHERE entry=20725; UPDATE item_template SET stackable = 10 WHERE entry=20725;