feat(DB/Creature): Allow to set swim and flight speeds (#10067)
This commit is contained in:
parent
18830ae00e
commit
dbc35e3495
5 changed files with 80 additions and 69 deletions
|
|
@ -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`;
|
||||
Loading…
Add table
Add a link
Reference in a new issue