Files
AscEmu/sql/world/updates/20210525-00_creature_spawns.sql
aaron02 b718ff0df1 Enabled More AIInterface
Rewrite some pet AI, threat handling, transporters
2021-05-28 01:58:54 +03:00

8 lines
334 B
SQL

ALTER TABLE `creature_spawns`
ADD COLUMN `wander_distance` int(10) NOT NULL DEFAULT 20 AFTER `event_entry`;
-- Set wander distance to 0 in spawns that do not use random movement
UPDATE `creature_spawns` SET `wander_distance`='0' WHERE NOT `movetype`='1';
INSERT INTO `world_db_version` VALUES ('76', '20210525-00_creature_spawns');