mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
Add new column `search_radius` to `creature_linking_template`. If this column is used (value > 0), master and slave are linked together if and only if they have their respawn coordinates within this range (point-to-point distance calculation) Note that linked spawning is slower this way and should only be used if required Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
3 lines
248 B
SQL
3 lines
248 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_11964_01_mangos_conditions required_11968_01_mangos_creature_linking_template bit;
|
|
|
|
ALTER TABLE creature_linking_template ADD COLUMN search_range MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER flag;
|