diff --git a/README.md b/README.md index 6c602889a..54f693607 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein # Releases | Among Us - Version| Mod Version | Link | |----------|-------------|-----------------| +| 2021.12.15s| v3.3.2| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.3.2/TheOtherRoles.zip) | 2021.12.14s| v3.3.1| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.3.1/TheOtherRoles.zip) | 2021.12.14s| v3.3.0| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.3.0/TheOtherRoles.zip) | 2021.11.9.5s| v3.2.4| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v3.2.4/TheOtherRoles.zip) @@ -90,6 +91,9 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein
Click to show the Changelog +**Version 3.3.2** +- Fixed a bug where you can't create a lobby on Among Us 2021.12.15 + **Version 3.3.1** - Fixed a bug where sometimes the Evil Guesser could not guess. Thanks @tomarai diff --git a/TheOtherRoles/Main.cs b/TheOtherRoles/Main.cs index 71ff9251a..8db5cf6c0 100644 --- a/TheOtherRoles/Main.cs +++ b/TheOtherRoles/Main.cs @@ -21,7 +21,7 @@ namespace TheOtherRoles public class TheOtherRolesPlugin : BasePlugin { public const string Id = "me.eisbison.theotherroles"; - public const string VersionString = "3.3.1"; + public const string VersionString = "3.3.2"; public static System.Version Version = System.Version.Parse(VersionString); internal static BepInEx.Logging.ManualLogSource Logger; diff --git a/TheOtherRoles/Patches/CustomServerPatch.cs b/TheOtherRoles/Patches/CustomServerPatch.cs index 591cdb752..006e59065 100644 --- a/TheOtherRoles/Patches/CustomServerPatch.cs +++ b/TheOtherRoles/Patches/CustomServerPatch.cs @@ -25,7 +25,7 @@ public static bool Prefix(ref Hazel.Udp.UnityUdpClientConnection __result, strin DnsRegionInfo region = serverManager.CurrentRegion.TryCast(); if (region == null || !region.Fqdn.EndsWith("among.us")) { var remoteEndPoint = new Il2CppSystem.Net.IPEndPoint(Il2CppSystem.Net.IPAddress.Parse(targetIp), (int)(targetPort - 3)); - __result = new Hazel.Udp.UnityUdpClientConnection(remoteEndPoint); + __result = new Hazel.Udp.UnityUdpClientConnection(null, remoteEndPoint); return false; } return true; diff --git a/TheOtherRoles/TheOtherRoles.csproj b/TheOtherRoles/TheOtherRoles.csproj index 287c3b1a8..d2b9db4df 100644 --- a/TheOtherRoles/TheOtherRoles.csproj +++ b/TheOtherRoles/TheOtherRoles.csproj @@ -1,7 +1,7 @@ netstandard2.1 - 3.3.1 + 3.3.2 TheOtherRoles Eisbison