diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-06-16 07:13:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-16 07:13:39 +0200 |
commit | 809f986457ac06ed2ebdbca88b7d788165e561c8 (patch) | |
tree | 26a8064d74f27b94bfa312dbe10ba7b17e937269 | |
parent | afa0bac669ac787e6bd35273c967a58b3e4e2196 (diff) |
DB/Misc: Fix some darkmoon faire things
Closes #17383 by prestonjamesparsons
-rw-r--r-- | sql/updates/world/6.x/2016_06_16_00_world.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/6.x/2016_06_16_00_world.sql b/sql/updates/world/6.x/2016_06_16_00_world.sql new file mode 100644 index 00000000000..49d6c2debd4 --- /dev/null +++ b/sql/updates/world/6.x/2016_06_16_00_world.sql @@ -0,0 +1,16 @@ +-- +DELETE FROM `game_event_creature` WHERE `guid` IN (314040, 314484, 310945); +INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES +(3, 314040), +(3, 314484), +(3, 310945); + +DELETE FROM `game_event_gameobject` WHERE `guid` IN (220437, 220463, 220468, 220476, 220461, 220436, 220466); +INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES +(3, 220437), +(3, 220463), +(3, 220468), +(3, 220476), +(3, 220461), +(3, 220436), +(3, 220466); |