mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Fix DomeTentStorage SQL Update
The Epoch dome tents had more cargo space than the default vanilla ones, so we have to use the level 1 upgraded version to prevent gear falling out. Also corrected swap for DesertTent.
This commit is contained in:
@@ -170,8 +170,8 @@ UPDATE character_data SET Backpack = REPLACE(Backpack, '"ItemTentDomed"', '"Item
|
||||
UPDATE character_data SET Inventory = REPLACE(Inventory, '"ItemTentDomed"', '"ItemDesertTent"') WHERE INSTR(Inventory, '"ItemTentDomed"') > 0;
|
||||
UPDATE object_data SET Inventory = REPLACE(Inventory, '"ItemTentDomed"', '"ItemDesertTent"') WHERE INSTR(Inventory, '"ItemTentDomed"') > 0;
|
||||
|
||||
update object_Data set classname = 'DomeTentStorage' where classname = 'TentStorageDomed';
|
||||
update object_Data set classname = 'DomeTentStorage' where classname = 'TentStorageDomed2';
|
||||
update object_Data set classname = 'DesertTentStorage1' where classname = 'TentStorageDomed';
|
||||
update object_Data set classname = 'DomeTentStorage1' where classname = 'TentStorageDomed2';
|
||||
|
||||
-- ----------------------------
|
||||
-- Updated fish names from 1.8.7
|
||||
|
||||
Reference in New Issue
Block a user