Skip to content

Commit 7a2552d

Browse files
committed
2.71
1 parent 6c0aafc commit 7a2552d

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

Bootstrap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public partial class GS2
1515
}
1616

1717

18-
[BepInPlugin("dsp.galactic-scale.2", "Galactic Scale 2 Plug-In", "2.17.1")]
18+
[BepInPlugin("dsp.galactic-scale.2", "Galactic Scale 2 Plug-In", "2.71.0")]
1919
[BepInDependency("space.customizing.console", BepInDependency.DependencyFlags.SoftDependency)]
2020
[BepInDependency("dsp.nebula-multiplayer-api", BepInDependency.DependencyFlags.SoftDependency)]
2121
public class Bootstrap : BaseUnityPlugin

GalacticScale3.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PropertyGroup>
99
<AssemblyName>GalacticScale</AssemblyName>
1010
<Description>Galaxy Customization for Dyson Sphere Program</Description>
11-
<Version>2.17.1</Version>
11+
<Version>2.71.0</Version>
1212
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1313
<LangVersion>9.0</LangVersion>
1414
<OutDir>bin/$(Configuration)</OutDir>
@@ -20,7 +20,7 @@
2020
<PackageReference Include="BepInEx.Core" Version="5.*" />
2121
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
2222
<PackageReference Include="UnityEngine.Modules" Version="2018.4.12" IncludeAssets="compile" />
23-
<PackageReference Include="DysonSphereProgram.GameLibs" Version="0.10.32.25496-r.0" IncludeAssets="compile" />
23+
<PackageReference Include="DysonSphereProgram.GameLibs" Version="0.10.32.25682-r.0" IncludeAssets="compile" />
2424
<PackageReference Include="DysonSphereProgram.Modding.NebulaMultiplayerModApi" Version="2.0.0" IncludeAssets="compile" />
2525
</ItemGroup>
2626

Package/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DSP Galactic Scale 2.0 Mod
22

33
# BACKUP YOUR SAVES. SERIOUSLY.
4-
4+
- Version 2.71.0 - Fix for new Game Update
55
- Version 2.17.1 - Attempt to prevent star view distance from being reset
66
- Version 2.17.0 - Update Game Version
77
- Version 2.16.6 - Fix Dyson Sphere Radius (New Saves. Edit the GS2 File otherwise)

Scripts/Patches/PlanetAuxData/SizeFixTranspiler.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ public class PatchOnPlanetAuxData
1313
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.ReformSnap))]
1414
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.ReformSnapCircle))]
1515
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.ReformSnapExceptDisableCircle))]
16-
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.Snap))]
16+
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.Snap), new System.Type[] { typeof(Vector3), typeof(bool) })]
17+
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.Snap), new System.Type[] { typeof(Vector3), typeof(bool), typeof(int) })]
1718
[HarmonyPatch(typeof(PlanetAuxData), nameof(PlanetAuxData.SnapLineNonAlloc))]
1819
public static IEnumerable<CodeInstruction> PlanetAuxDataTranspiler(
1920
IEnumerable<CodeInstruction> instructions, ILGenerator il)

thunderstore.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ schemaVersion = "0.0.1"
44
[package]
55
namespace = "Galactic_Scale"
66
name = "GalacticScale"
7-
versionNumber = "2.17.1"
8-
description = "v2.17.1 Galaxy Customization. New Planets. Different Sized Planets. Up to 100 Planets/star and 1024 Stars. DF is more or less balanced. See GS Discord Server"
7+
versionNumber = "2.71.0"
8+
description = "v2.71.0 Galaxy Customization. New Planets. Different Sized Planets. Up to 100 Planets/star and 1024 Stars. DF is more or less balanced. See GS Discord Server"
99
websiteUrl = "https://github.com/Touhma/DSP_Plugins"
1010
containsNsfwContent = false
1111

0 commit comments

Comments
 (0)