diff options
author | click <click@gonnamakeyou.com> | 2011-07-02 19:22:10 +0200 |
---|---|---|
committer | click <click@gonnamakeyou.com> | 2011-07-02 19:22:10 +0200 |
commit | 3ddc1cc4c40b757dd42b781552b483a047a6df64 (patch) | |
tree | ab41f04d927bcd58a80a64a03869c86dab857f7e | |
parent | a310e11ab69cd5b005f3cd522b2467331cfa9f28 (diff) |
DB: Fix query for deletion in previous commit (didn't test it, sorry!) - and the original SQL is by Durotar, not Aokromes - thanks to both anyway... :P
-rw-r--r-- | sql/updates/world/2011_07_02_01_world_game_tele.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2011_07_02_01_world_game_tele.sql b/sql/updates/world/2011_07_02_01_world_game_tele.sql index d464f59fb29..47f1d6fa29b 100644 --- a/sql/updates/world/2011_07_02_01_world_game_tele.sql +++ b/sql/updates/world/2011_07_02_01_world_game_tele.sql @@ -1,6 +1,6 @@ -- GAME_TELE: Some missing areas SET @id := 1419; -DELETE FROM `game_tele` WHERE `id` IN(@id,@id+1,@id+2) +DELETE FROM `game_tele` WHERE `id` IN(@id,@id+1,@id+2); INSERT INTO `game_tele` (`id`,`position_x`,`position_y`,`position_z`,`orientation`,`map`,`name`) VALUES (@id,5690.97,2141.074,798.0541,4.4344,571, 'TheFrozenHalls'), (@id+1,8427.875,2706.33,655.095,5.743,571, 'TheShadowVault'), |