]> git.deb.at Git - rhonda/theotherroles.git/commitdiff
version 3.3.2
authordwd0tcom <info@dominikwierl.com>
Thu, 16 Dec 2021 22:32:31 +0000 (23:32 +0100)
committerdwd0tcom <info@dominikwierl.com>
Thu, 16 Dec 2021 22:32:31 +0000 (23:32 +0100)
README.md
TheOtherRoles/Main.cs
TheOtherRoles/Patches/CustomServerPatch.cs
TheOtherRoles/TheOtherRoles.csproj

index 6c602889af21c3f39f821722e09106d8477ff977..54f6936077f13071383b449ae3b3a697beb9724c 100644 (file)
--- 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
 <details>
   <summary>Click to show the Changelog</summary>
 
+**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
 
index 71ff9251a116138998a4c8fae55c37de018e599e..8db5cf6c071f25700a10d70c23beb5382093e5b1 100644 (file)
@@ -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;
 
index 591cdb7520d00742606deda8c9f0c88e7083fdcd..006e590655e06cb8e8bd407debf9cd77e5642f9a 100644 (file)
@@ -25,7 +25,7 @@ namespace TheOtherRoles.Patches
             DnsRegionInfo region = serverManager.CurrentRegion.TryCast<DnsRegionInfo>();
             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;
index 287c3b1a856d7222369bcc7f8eac7d783b4663a1..d2b9db4df3c8f90b0420bc2b75391583056d08be 100644 (file)
@@ -1,7 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
     <PropertyGroup>
         <TargetFramework>netstandard2.1</TargetFramework>
-        <Version>3.3.1</Version>
+        <Version>3.3.2</Version>
         <Description>TheOtherRoles</Description>
         <Authors>Eisbison</Authors>
     </PropertyGroup>