diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-06-20 09:13:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 09:13:25 +0200 |
commit | a73e9b7f46ca1a34457e5a95e77f8d57711cc18b (patch) | |
tree | 7cd5926d5f08623d3444a91feea6d49c4da47999 | |
parent | 5206ce34054ec1d6ff8502ee6359781ee8e86aac (diff) |
DB/Misc: Fix some incorrect data
-rw-r--r-- | sql/updates/world/3.3.5/2016_06_20_04_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_06_20_04_world.sql b/sql/updates/world/3.3.5/2016_06_20_04_world.sql new file mode 100644 index 00000000000..da0d6b05919 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_06_20_04_world.sql @@ -0,0 +1,6 @@ +-- +SET @CGUID := 87945; -- 15 required +SET @OGUID := 64102; -- 15 required + +DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14 AND `eventEntry`=14; +DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+14 AND `eventEntry`=14; |