Skip to content

Commit 410b2ef

Browse files
committed
2.2.0.6
1 parent b9a0de5 commit 410b2ef

File tree

2 files changed

+967
-961
lines changed

2 files changed

+967
-961
lines changed

GalacticScale2/Scripts/Bootstrap.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Collections;
1+
using System;
2+
using System.Collections;
23
using System.IO;
34
using System.Reflection;
45
using BepInEx;
@@ -20,7 +21,7 @@ public partial class GS2
2021
// [BepInDependency("nebula.api", BepInDependency.DependencyFlags.HardDependency)]
2122
public class Bootstrap : BaseUnityPlugin
2223
{
23-
public const string VERSION = "2.2.0.5";
24+
public const string VERSION = "2.2.0.6";
2425

2526
public new static ManualLogSource Logger;
2627

@@ -40,6 +41,8 @@ internal void Awake()
4041
Logger = new ManualLogSource("GS2");
4142
BepInEx.Logging.Logger.Sources.Add(Logger);
4243
GS2.ConsoleSplash();
44+
Environment.SetEnvironmentVariable("MONOMOD_DMD_TYPE", "cecil");
45+
Environment.SetEnvironmentVariable("MONOMOD_DMD_DUMP", "./mmdump");
4346
Harmony.CreateAndPatchAll(typeof(PatchOnWhatever));
4447
Harmony.CreateAndPatchAll(typeof(PatchOnBlueprintUtils));
4548
Harmony.CreateAndPatchAll(typeof(PatchOnBuildingGizmo));

0 commit comments

Comments
 (0)