Update 1.0.5_Updates.sql

Should prevent the "[Error] Skipping ObjectID XX load because of invalid data in db" messages in trace output for the BAF_Merlin_HC3_D (and possibly others)
This commit is contained in:
f3cuk
2014-07-11 17:01:08 +02:00
parent 7285b9e113
commit ef43ee707c

View File

@@ -20,3 +20,9 @@ UPDATE `Traders_DATA` SET `qty` = '10' WHERE `afile` = 'trade_backpacks';
UPDATE `Traders_DATA` SET `qty` = '2' WHERE `afile` = 'trade_any_vehicle';
UPDATE `Traders_DATA` SET `qty` = '2' WHERE `afile` = 'trade_any_boat';
UPDATE `Traders_DATA` SET `qty` = '10' WHERE `afile` = 'trade_any_bicycle';
--
-- Prevent hitpoints from overflooding and causing errors
--
ALTER TABLE `object_data` CHANGE `Hitpoints` `Hitpoints` VARCHAR(1024) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '[]';