Skip to content

Commit

Permalink
2.2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
innominata committed Sep 29, 2021
1 parent b9a0de5 commit 410b2ef
Show file tree
Hide file tree
Showing 2 changed files with 967 additions and 961 deletions.
7 changes: 5 additions & 2 deletions GalacticScale2/Scripts/Bootstrap.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections;
using System;
using System.Collections;
using System.IO;
using System.Reflection;
using BepInEx;
Expand All @@ -20,7 +21,7 @@ public partial class GS2
// [BepInDependency("nebula.api", BepInDependency.DependencyFlags.HardDependency)]
public class Bootstrap : BaseUnityPlugin
{
public const string VERSION = "2.2.0.5";
public const string VERSION = "2.2.0.6";

public new static ManualLogSource Logger;

Expand All @@ -40,6 +41,8 @@ internal void Awake()
Logger = new ManualLogSource("GS2");
BepInEx.Logging.Logger.Sources.Add(Logger);
GS2.ConsoleSplash();
Environment.SetEnvironmentVariable("MONOMOD_DMD_TYPE", "cecil");
Environment.SetEnvironmentVariable("MONOMOD_DMD_DUMP", "./mmdump");
Harmony.CreateAndPatchAll(typeof(PatchOnWhatever));
Harmony.CreateAndPatchAll(typeof(PatchOnBlueprintUtils));
Harmony.CreateAndPatchAll(typeof(PatchOnBuildingGizmo));
Expand Down
Loading

0 comments on commit 410b2ef

Please sign in to comment.