diff options
author | Nay <dnpd.dd@gmail.com> | 2012-02-18 16:43:33 +0000 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2012-02-18 16:43:33 +0000 |
commit | c91ec2eede69f53bccd362a04dc842d570d256bd (patch) | |
tree | efdeb3a2f81724407155f679f0d76899e90c9ac4 | |
parent | 20dd5078829d237fac4c00fc2b2d44efe0c74406 (diff) |
DB/NPCs: Fix MovementType & waypoints
Should kill the "missing path id 0" spam.
-rw-r--r-- | sql/updates/world/2012_02_18_05_world_creatures.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/2012_02_18_05_world_creatures.sql b/sql/updates/world/2012_02_18_05_world_creatures.sql new file mode 100644 index 00000000000..3fdac99c854 --- /dev/null +++ b/sql/updates/world/2012_02_18_05_world_creatures.sql @@ -0,0 +1,3 @@ +UPDATE `creature` SET `MovementType`=1 WHERE `spawndist`!=0 AND `MovementType`=2 AND `guid` IN (49123,49124,49125,49127,49128,49129,49143,49144,49145,49146,49150,49151,49154,49156,49157,49158,49167,49186,49187,49188,49318,49319,49664,49665,49751,49762,51398,51402,51422,51423,123148,127753,137490,137491,202314); +UPDATE `creature` SET `MovementType`=0 WHERE `spawndist`=0 AND `MovementType`=2 AND `guid` IN (49123,49124,49125,49127,49128,49129,49143,49144,49145,49146,49150,49151,49154,49156,49157,49158,49167,49186,49187,49188,49318,49319,49664,49665,49751,49762,51398,51402,51422,51423,123148,127753,137490,137491,202314); +UPDATE `creature_template` SET `MovementType`=0 WHERE `MovementType`=2 AND `entry` NOT IN (21657,30007); |