aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorRat <gmstreetrat@gmail.com>2015-04-13 22:25:35 +0200
committerRat <gmstreetrat@gmail.com>2015-04-13 22:25:35 +0200
commite5675412735a33f05f9c3215fb0cc7327a800c6c (patch)
tree333c9accdaa65a5c5d600f5f7af4823894848f16 /sql
parentf20c6530b8ef496259c8e6a6401b11c50efd5940 (diff)
Core/Quests: fixed quest rewarding
* ItemSpec.dbc still needs some research to handle all cases correctly
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/2015_04_13_00_hotfixes.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/2015_04_13_00_hotfixes.sql b/sql/updates/hotfixes/2015_04_13_00_hotfixes.sql
new file mode 100644
index 00000000000..34cd911bfa8
--- /dev/null
+++ b/sql/updates/hotfixes/2015_04_13_00_hotfixes.sql
@@ -0,0 +1,10 @@
+DROP TABLE IF EXISTS `quest_package_item`;
+CREATE TABLE `quest_package_item` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `QuestPackageID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemCount` int(10) unsigned NOT NULL DEFAULT '0',
+ `Unk` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;