fix(DB/creature): Fix Sunscale Lashtails movement (#5963)

Sunscale Lashtails (id: 40489 - 40496) were standing still and their
respawn time was significantly lower compared to their wandering
brethren (id: 19809 - 19817). I modified the immobile creatures'
attributes to match with the moving ones.

- Closes #5940
- Closes chromiecraft/chromiecraft#673
This commit is contained in:
anguaive
2021-06-30 18:32:30 +02:00
committed by GitHub
parent 3b58f56029
commit fc1c82437c

View File

@@ -0,0 +1,5 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1621501368347745883');
UPDATE `creature`
SET `modelid` = 1744, `spawntimesecs` = 275, `wander_distance` = 5, `curhealth` = 178, `movementtype` = 1
WHERE `guid` BETWEEN 40489 AND 40496 AND `id` = 3254;