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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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`;