Skip to content

Commit

Permalink
Updated required game version to 1.18.1-f3
Browse files Browse the repository at this point in the history
  • Loading branch information
MacSergey committed Oct 26, 2024
1 parent a4aec7a commit f9b96f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BuildingSpawnPoints/BuildingSpawnPoints.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Stable Release' OR '$(Configuration)' == 'Stable Debug'">
<AssemblyVersion>1.4.1.1</AssemblyVersion>
<AssemblyVersion>1.4.2</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Stable Release|AnyCPU'">
Expand Down
3 changes: 2 additions & 1 deletion BuildingSpawnPoints/Mod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class Mod : BasePatcherMod<Mod>

public override List<ModVersion> Versions => new List<ModVersion>()
{
new ModVersion(new Version(1,4,2), new DateTime(2024, 10, 26)),
new ModVersion(new Version(1,4,1), new DateTime(2023, 5, 27)),
new ModVersion(new Version(1,4), new DateTime(2023, 4, 9)),
new ModVersion(new Version(1,3,2), new DateTime(2022, 12, 13)),
Expand All @@ -33,7 +34,7 @@ public class Mod : BasePatcherMod<Mod>
new ModVersion(new Version(1,0,1), new DateTime(2021, 6, 10)),
new ModVersion(new Version(1,0), new DateTime(2021, 6, 8)),
};
protected override Version RequiredGameVersion => new Version(1, 17, 1, 2);
protected override Version RequiredGameVersion => new Version(1, 18, 1, 3);

protected override ulong StableWorkshopId => 2511258910ul;
protected override ulong BetaWorkshopId => 2504315382ul;
Expand Down
5 changes: 5 additions & 0 deletions BuildingSpawnPoints/Properties/Localize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public class Localize
/// </summary>
public static string Mod_WhatsNewMessage1_4_1 => LocaleManager.GetString("Mod_WhatsNewMessage1_4_1", Culture);

/// <summary>
/// [UPDATED] Updated required game version to 1.18.1-f3
/// </summary>
public static string Mod_WhatsNewMessage1_4_2 => LocaleManager.GetString("Mod_WhatsNewMessage1_4_2", Culture);

/// <summary>
/// Add all types of vehicles
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions BuildingSpawnPoints/Properties/Localize.resx
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@
<value>[UPDATED] Added Hotels&amp;Retreats DLC support.
[TRANSLATION] Added Chinese traditional, Thai and Ukrainian translations.</value>
</data>
<data name="Mod_WhatsNewMessage1_4_2" xml:space="preserve">
<value>[UPDATED] Updated required game version to 1.18.1-f3</value>
</data>
<data name="Panel_AddAllVehicle" xml:space="preserve">
<value>Add all types of vehicles</value>
</data>
Expand Down

0 comments on commit f9b96f5

Please sign in to comment.