From ad3463b65347e031403471f8a9a18beb9ebd5ffe Mon Sep 17 00:00:00 2001 From: Athlon007 Date: Fri, 9 Dec 2022 20:17:16 +0100 Subject: [PATCH] Hotfix 3.10.3 --- CHANGELOG.md | 8 +++++++- MOP/Properties/AssemblyInfo.cs | 4 ++-- MOP/Resources/changelog.txt | 4 +--- MOP/src/GameFixes.cs | 16 +++++----------- MOP/src/MOP.cs | 2 +- 5 files changed, 16 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 188a80e..2e93932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## 3.10.2 (05.11.2022) +## 3.10.3 (09.12.2022) + +### Bug Fixes + +- Fixed warnings caused by the latest My Summer Car update + +## 3.10.2 (05.12.2022) ### Bug Fixes diff --git a/MOP/Properties/AssemblyInfo.cs b/MOP/Properties/AssemblyInfo.cs index e7ef8a8..92fb092 100644 --- a/MOP/Properties/AssemblyInfo.cs +++ b/MOP/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.10.2.1")] -[assembly: AssemblyFileVersion("3.10.2.1")] +[assembly: AssemblyVersion("3.10.3.0")] +[assembly: AssemblyFileVersion("3.10.3.0")] diff --git a/MOP/Resources/changelog.txt b/MOP/Resources/changelog.txt index 5abebae..877f184 100644 --- a/MOP/Resources/changelog.txt +++ b/MOP/Resources/changelog.txt @@ -1,5 +1,3 @@ ### Bug Fixes -- Fixed bare car body moving, if player attempted to put floor jack under it -- Fixed a bug, which would cause the car body not fall, if it was (somehow) sent flying in the air -- Fixed Satsuma not entirely getting disabled \ No newline at end of file +- Fixed warnings caused by the latest My Summer Car update \ No newline at end of file diff --git a/MOP/src/GameFixes.cs b/MOP/src/GameFixes.cs index a300aad..987198c 100644 --- a/MOP/src/GameFixes.cs +++ b/MOP/src/GameFixes.cs @@ -78,12 +78,11 @@ public void MainFixes() if (buildings != null && perajarvi != null) { - SetParent(perajarvi, buildings, "HouseRintama4"); - SetParent(perajarvi, buildings, "ChickenHouse"); - SetParent(perajarvi, buildings, "HouseOld5"); + //SetParent(perajarvi, buildings, "HouseRintama4"); + //SetParent(perajarvi, buildings, "ChickenHouse"); + //SetParent(perajarvi, buildings, "HouseOld5"); SetParent(perajarvi, buildings, "HouseRintama3"); SetParent(perajarvi, buildings, "HouseSmall3"); - SetParent(buildings, null, "ChickenHouse"); // Home barn. SetParent(null, "CHURCHWALL"); SetParent(null, "DINGONBIISI"); @@ -124,20 +123,15 @@ public void MainFixes() GameObject.Find("lantern(itemx)").transform.parent = null; GameObject.Find("coffee cup(itemx)").transform.parent = null; GameObject.Find("camera(itemx)").transform.parent = null; - GameObject.Find("COTTAGE/ax(itemx)").transform.parent = null; - GameObject.Find("fireworks bag(itemx)").transform.parent = null; - // Fix for fishing areas GameObject.Find("FishAreaAVERAGE").transform.parent = null; GameObject.Find("FishAreaBAD").transform.parent = null; GameObject.Find("FishAreaGOOD").transform.parent = null; GameObject.Find("FishAreaGOOD2").transform.parent = null; - // Fix for strawberry field mailboxes - GameObject.Find("JOBS").transform.Find("StrawberryField/LOD/MailBox").parent = null; - GameObject.Find("JOBS").transform.Find("StrawberryField/LOD/MailBox").parent = null; - + //GameObject.Find("JOBS").transform.Find("StrawberryField/LOD/MailBox").parent = null; + //GameObject.Find("JOBS").transform.Find("StrawberryField/LOD/MailBox").parent = null; // Fix for items left on cottage chimney clipping through it on first load of cottage GameObject.Find("COTTAGE").transform.Find("MESH/Cottage_chimney").parent = null; } diff --git a/MOP/src/MOP.cs b/MOP/src/MOP.cs index db4bf3e..5fa2e77 100644 --- a/MOP/src/MOP.cs +++ b/MOP/src/MOP.cs @@ -35,7 +35,7 @@ public class MOP : Mod public override string ID => "MOP"; public override string Name => "MODERN OPTIMIZATION PLUGIN"; public override string Author => "Athlon"; //Your Username - public override string Version => "3.10.2"; //Version + public override string Version => "3.10.3"; //Version public const string SubVersion = ""; // NIGHTLY-yyyymmdd | BETA_x | RC_ #if PRO public const string Edition = "Mod Loader Pro";