diff --git a/UnsettlingDescriptions/assets/i18n/default.json b/UnsettlingDescriptions/assets/i18n/default.json index e7f6dbc..c3e5d51 100644 --- a/UnsettlingDescriptions/assets/i18n/default.json +++ b/UnsettlingDescriptions/assets/i18n/default.json @@ -3,7 +3,7 @@ { "LogName": "Edit BigCraftablesInformation descriptions", "Action": "EditData", - "Target": "Strings/BigCraftablesInformation", + "Target": "Data/BigCraftablesInformation", "Fields": { "0": { "4": "The small flower buds have a sweet, heady aroma." @@ -328,7 +328,7 @@ { "LogName": "Edit Blueprints descriptions", "Action": "EditData", - "Target": "Strings/Blueprints", + "Target": "Data/Blueprints", "Fields": { "Silo": { "9": "Stores dead organisms to feed your livestock." @@ -356,7 +356,7 @@ { "LogName": "Edit Boots descriptions", "Action": "EditData", - "Target": "Strings/Boots", + "Target": "Data/Boots", "Fields": { "504": { "1": "Stylish, but they lack traction on muddy, slimy, or bloody surfaces." @@ -402,7 +402,7 @@ { "LogName": "Edit ClothingInformation descriptions", "Action": "EditData", - "Target": "Strings/ClothingInformation", + "Target": "Data/ClothingInformation", "Entries": { "1105": "Shirt/Shirt/A wearable shirt./0/-1/50/255 255 255/false/Shirt" }, @@ -529,7 +529,7 @@ { "LogName": "Edit hats descriptions", "Action": "EditData", - "Target": "Strings/hats", + "Target": "Data/hats", "Fields": { "0": { "1": "There's a small, round hole torn out of the brim." @@ -623,7 +623,7 @@ { "LogName": "Edit ObjectInformation descriptions", "Action": "EditData", - "Target": "Strings/ObjectInformation", + "Target": "Data/ObjectInformation", "Fields": { "16": { "5": "A hotly pungent, fleshy root. Crushing or grinding it releases the flavor and heat." @@ -2232,7 +2232,7 @@ { "LogName": "Edit weapons descriptions", "Action": "EditData", - "Target": "Strings/weapons", + "Target": "Data/weapons", "Fields": { "0": { "1": "Bestows tetanus on your enemies. And on you, if you're not careful." diff --git a/UnsettlingDescriptions/content.json b/UnsettlingDescriptions/content.json index e8ff997..55df1a1 100644 --- a/UnsettlingDescriptions/content.json +++ b/UnsettlingDescriptions/content.json @@ -6,7 +6,7 @@ "Action": "Include", "FromFile": "assets/i18n/default.json", "When": { - "HasFile:i18n/{{language}}.json": false + "HasFile:assets/i18n/{{language}}.json": false } }, //OTHER LANGUAGES diff --git a/UnsettlingDescriptions/scripts/csv2CP.py b/UnsettlingDescriptions/scripts/csv2CP.py index dfbd8ae..1cf544d 100644 --- a/UnsettlingDescriptions/scripts/csv2CP.py +++ b/UnsettlingDescriptions/scripts/csv2CP.py @@ -18,7 +18,7 @@ new_patch["LogName"] = "Edit " + target_name + " descriptions" new_patch["Action"] = "EditData" - new_patch["Target"] = "Strings/" + target_name + new_patch["Target"] = "Data/" + target_name # Check if this filled csv file exists if not os.path.isfile('csv_filled/Unsettling Item Descriptions - ' + target_name + '.csv'):