diff --git a/Changelog.md b/Changelog.md index 734956c..3c1c6c1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ # Changelog +[0.4.3] + +- Removed references to the `Mod` class from SLP. This was the root of the multiplayer + connectivity issues. Multiplayer should now work with Slang installed. + [0.4.2] - Removed all harmony patches as most functionality as been added into the diff --git a/ModData/About/About.xml b/ModData/About/About.xml index a79e411..edef217 100644 --- a/ModData/About/About.xml +++ b/ModData/About/About.xml @@ -2,7 +2,7 @@ Slang JoeDiertay - 0.4.2 + 0.4.3 [h1]Slang: High-Level Programming for Stationeers[/h1] diff --git a/csharp_mod/Plugin.cs b/csharp_mod/Plugin.cs index 37e50f1..4ae0d32 100644 --- a/csharp_mod/Plugin.cs +++ b/csharp_mod/Plugin.cs @@ -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; diff --git a/rust_compiler/Cargo.lock b/rust_compiler/Cargo.lock index 34712a0..b5bca3c 100644 --- a/rust_compiler/Cargo.lock +++ b/rust_compiler/Cargo.lock @@ -930,7 +930,7 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "slang" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyhow", "clap", diff --git a/rust_compiler/Cargo.toml b/rust_compiler/Cargo.toml index 99ef668..41b30e7 100644 --- a/rust_compiler/Cargo.toml +++ b/rust_compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slang" -version = "0.4.2" +version = "0.4.3" edition = "2021" [workspace]