mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
Stuck behavior sql
This commit is contained in:
parent
ef32940be2
commit
e8dffa1087
@ -383,6 +383,7 @@
|
||||
9127|2018_09_07_NPCMaxAggroDist.sql|SHOW COLUMNS FROM `zone` LIKE 'npc_max_aggro_dist'|empty|
|
||||
9128|2018_08_13_inventory_version_update.sql|SHOW TABLES LIKE 'inventory_version'|not_empty|
|
||||
9129|2018_08_13_inventory_update.sql|SHOW TABLES LIKE 'inventory_versions'|empty|
|
||||
9130|2018_11_11_StuckBehavior.sql|SHOW COLUMNS FROM `npc_types` LIKE 'stuck_behavior'|empty|
|
||||
|
||||
# Upgrade conditions:
|
||||
# This won't be needed after this system is implemented, but it is used database that are not
|
||||
|
||||
2
utils/sql/git/required/2018_11_11_StuckBehavior.sql
Normal file
2
utils/sql/git/required/2018_11_11_StuckBehavior.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `npc_types` ADD COLUMN `stuck_behavior` TINYINT(4) NOT NULL DEFAULT '0' AFTER `rare_spawn`;
|
||||
UPDATE `npc_types` SET `stuck_behavior`=2 WHERE `underwater`=1;
|
||||
Loading…
x
Reference in New Issue
Block a user