Remove MOD from Plugin.cs which fixed networking
All checks were successful
CI/CD Pipeline / build (pull_request) Has been skipped
CI/CD Pipeline / release (pull_request) Has been skipped
CI/CD Pipeline / test (pull_request) Successful in 34s

This commit is contained in:
2025-12-24 22:27:43 -07:00
parent 9b8900d7a7
commit 0ca6b27a11
5 changed files with 9 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
using System.Text.RegularExpressions;
using BepInEx;
using HarmonyLib;
using LaunchPadBooster;
namespace Slang
{
@@ -41,9 +40,7 @@ namespace Slang
{
public const string PluginGuid = "com.biddydev.slang";
public const string PluginName = "Slang";
public const string PluginVersion = "0.4.2";
public static Mod MOD = new Mod(PluginName, PluginVersion);
public const string PluginVersion = "0.4.3";
private Harmony? _harmony;