
- Corrected check to finalizing vending/buyingstore autotrader datas, follow up 171e2f2. Thank Stingor - Autotrade persistance updates: (suggestion from Napster) --- Kicked player will be removed from vending or buyingstore table. This also avoid 'confusion' lookup when server restarted after the kicked player logged back and does autotrade. --- feature.autotrade_direction, added -1 value to use last player's direction --- feature.autotrade_head_direction, added for player's head direction --- feature.autotrade_sit, added -1 value to use last player's condition (standing/sitting) --- Please import/execute upgrade_20140723.sql Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
8 lines
347 B
SQL
8 lines
347 B
SQL
ALTER TABLE `vendings` ADD `body_direction` CHAR( 1 ) NOT NULL DEFAULT '4',
|
|
ADD `head_direction` CHAR( 1 ) NOT NULL DEFAULT '0',
|
|
ADD `sit` CHAR( 1 ) NOT NULL DEFAULT '1';
|
|
|
|
ALTER TABLE `buyingstores` ADD `body_direction` CHAR( 1 ) NOT NULL DEFAULT '4',
|
|
ADD `head_direction` CHAR( 1 ) NOT NULL DEFAULT '0',
|
|
ADD `sit` CHAR( 1 ) NOT NULL DEFAULT '1';
|