feat(DB/Creature): Allow to set swim and flight speeds (#10067)

This commit is contained in:
Kitzunu
2022-01-09 01:34:39 +01:00
committed by GitHub
parent 18830ae00e
commit dbc35e3495
5 changed files with 80 additions and 69 deletions

View File

@@ -0,0 +1,5 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1641650285026899700');
ALTER TABLE `creature_template`
ADD COLUMN `speed_swim` FLOAT NOT NULL DEFAULT '1' AFTER `speed_run`,
ADD COLUMN `speed_flight` FLOAT NOT NULL DEFAULT '1' AFTER `speed_swim`;