From a6923b8857e9d854f12c72e378e140d0677b3ce5 Mon Sep 17 00:00:00 2001 From: sheepy <39248026+sheepiest@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:06:03 +0000 Subject: [PATCH 1/5] Fix TerraGroup Employee start conditions (#1007) Added status 7 to prerequisite quest "Colleagues - Part 3" Added "The Huntsman Path - Sadist" as prerequisite quest This change aligns quest behavior to Live PVP. Possible that the dumped PVE data is incorrect. Issue also present in 4.0.0. "id" and "index" might need to be changed. --- project/assets/database/templates/quests.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/project/assets/database/templates/quests.json b/project/assets/database/templates/quests.json index 0ba2bd91..5e488f9a 100644 --- a/project/assets/database/templates/quests.json +++ b/project/assets/database/templates/quests.json @@ -60335,10 +60335,27 @@ "parentId": "", "status": [ 4, - 5 + 5, + 7 ], "target": "5edac34d0bb72a50635c2bfa", "visibilityConditions": [] + }, + { + "availableAfter": 0, + "conditionType": "Quest", + "dispersion": 0, + "dynamicLocale": false, + "globalQuestCounterId": "", + "id": "677260a62c1ea725720d6532", + "index": 1, + "parentId": "", + "status": [ + 4, + 5 + ], + "target": "5edab4b1218d181e29451435", + "visibilityConditions": [] } ], "Fail": [] From 93757c5f7bf772358db406136d23e653bad7d517 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 31 Dec 2024 15:32:54 +0000 Subject: [PATCH 2/5] Forced `Thats a Great Plan Walter` to be enabled --- project/assets/configs/quest.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/project/assets/configs/quest.json b/project/assets/configs/quest.json index 64807497..6feca393 100644 --- a/project/assets/configs/quest.json +++ b/project/assets/configs/quest.json @@ -228,13 +228,6 @@ "startTimestamp": 1341615600000, "endTimestamp": "", "yearly": true - }, - "674647f38466ebb03408b291": { - "name": "Thats a Great Plan Walter", - "season": "None", - "startTimestamp": 1341615600000, - "endTimestamp": "", - "yearly": false } }, "repeatableQuests": [ From cb067bd2567a54003c1e74c3fc98e4bad82dd665 Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 1 Jan 2025 09:05:56 +0000 Subject: [PATCH 3/5] Fixed new years and april fools events being incorrectly named --- project/assets/configs/seasonalevents.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/seasonalevents.json b/project/assets/configs/seasonalevents.json index 6b3036a5..3fa32c94 100644 --- a/project/assets/configs/seasonalevents.json +++ b/project/assets/configs/seasonalevents.json @@ -8339,7 +8339,7 @@ { "enabled": true, "name": "newyears", - "type": "NEW_YEARS", + "type": "NEWYEARS", "startDay": "1", "startMonth": "1", "endDay": "7", @@ -8348,7 +8348,7 @@ { "enabled": true, "name": "April fools", - "type": "APRIL_FOOLS", + "type": "APRILFOOLS", "startDay": "1", "startMonth": "4", "endDay": "2", From 51869ce70d9c0a6e11c5bd7b406bca5c806f1269 Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 1 Jan 2025 09:33:49 +0000 Subject: [PATCH 4/5] Updated version string --- project/assets/configs/core.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/core.json b/project/assets/configs/core.json index 12fcd5ef..fb5182d7 100644 --- a/project/assets/configs/core.json +++ b/project/assets/configs/core.json @@ -1,5 +1,5 @@ { - "sptVersion": "3.10.4", + "sptVersion": "3.10.5", "projectName": "SPT", "compatibleTarkovVersion": "0.15.5.33420", "serverName": "SPT Server", From 961dd16cc0723c9928051d5dbc339c179a4fcc10 Mon Sep 17 00:00:00 2001 From: RaiRaiTheRaichu Date: Fri, 3 Jan 2025 22:19:38 -0500 Subject: [PATCH 5/5] Fixed versioning --- project/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/package.json b/project/package.json index a4600795..1201ff84 100644 --- a/project/package.json +++ b/project/package.json @@ -1,6 +1,6 @@ { "name": "spt-server", - "version": "3.10.4", + "version": "3.10.5", "author": "SPT Server", "license": "NCSA", "main": "obj/bundle.js",