mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Update half cinderblock wall class in sql
This commit is contained in:
@@ -149,6 +149,15 @@ UPDATE character_data SET Backpack = REPLACE(Backpack, 'ItemTunaCooked', 'FishCo
|
||||
UPDATE character_data SET Inventory = REPLACE(Inventory, 'ItemTunaCooked', 'FishCookedTuna') WHERE INSTR(Inventory, 'ItemTunaCooked') > 0;
|
||||
UPDATE object_data SET Inventory = REPLACE(Inventory, 'ItemTunaCooked', 'FishCookedTuna') WHERE INSTR(Inventory, 'ItemTunaCooked') > 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Update new half cinderblock wall class
|
||||
-- ----------------------------
|
||||
|
||||
UPDATE `Traders_DATA` SET `item` = '["cinder_wall_kit",1]' WHERE `item` = '["half_cinder_wall_kit",1]';
|
||||
UPDATE character_data SET Backpack = REPLACE(Backpack, 'cinder_wall_kit', 'half_cinder_wall_kit') WHERE INSTR(Backpack, 'cinder_wall_kit') > 0;
|
||||
UPDATE character_data SET Inventory = REPLACE(Inventory, 'cinder_wall_kit', 'half_cinder_wall_kit') WHERE INSTR(Inventory, 'cinder_wall_kit') > 0;
|
||||
UPDATE object_data SET Inventory = REPLACE(Inventory, 'cinder_wall_kit', 'half_cinder_wall_kit') WHERE INSTR(Inventory, 'cinder_wall_kit') > 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Updated shotgun ammo names from 1.8.7
|
||||
-- ----------------------------
|
||||
@@ -492,4 +501,4 @@ UPDATE object_data SET Inventory = REPLACE(Inventory, 'Winchester1866', 'Winches
|
||||
--DELIMITER ;
|
||||
--
|
||||
--UPDATE object_data SET Worldspace = RemoveQuotes(Worldspace);
|
||||
--DROP FUNCTION `RemoveQuotes`;
|
||||
--DROP FUNCTION `RemoveQuotes`;
|
||||
|
||||
Reference in New Issue
Block a user