aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKinzcool <kinzzcool@hotmail.com>2013-01-28 21:59:12 -0500
committerKinzcool <kinzzcool@hotmail.com>2013-01-28 21:59:12 -0500
commit5040fd2558aa259d7280ae40af54b698a17c482b (patch)
tree7f447b83ddff0e234d1b3763b43ed3592f6ba310
parent29cd1dbec17c25745a53a6e7419e63ac411b81ab (diff)
DB/Gameobjects: Set proper state for ToCr doors and fixed looting of Venomhide Egg & Discarded Soul Crystal
-rw-r--r--sql/updates/world/2013_01_28_00_world_gameobject.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2013_01_28_00_world_gameobject.sql b/sql/updates/world/2013_01_28_00_world_gameobject.sql
new file mode 100644
index 00000000000..3f49d799c62
--- /dev/null
+++ b/sql/updates/world/2013_01_28_00_world_gameobject.sql
@@ -0,0 +1,8 @@
+-- Doors should be closed
+UPDATE `gameobject` SET `state`=1 WHERE `guid` IN (150074, 150073, 150077);
+
+-- Duplicated Gameobject
+DELETE FROM `gameobject` WHERE `guid`=150081;
+
+-- Fix loots
+UPDATE `gameobject_loot_template` SET `ChanceOrQuestChance`=-100 WHERE `entry` IN (27310, 27239);