Skip to content

Commit

Permalink
2021.12.15
Browse files Browse the repository at this point in the history
  • Loading branch information
js6pak committed Dec 21, 2021
1 parent 837ee14 commit 89a8ada
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions AmongUs.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<GamePlatform Condition="'$(GamePlatform)' == ''">Steam</GamePlatform>
<GameVersion Condition="'$(GamePlatform)' == 'Steam'">2021.12.14</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Itch'">2021.12.14</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Steam'">2021.12.15</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Itch'">2021.12.15</GameVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Reactor.Debugger/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
".NETStandard,Version=v2.1": {
"AmongUs.GameLibs.Steam": {
"type": "Direct",
"requested": "[2021.12.14, )",
"resolved": "2021.12.14",
"contentHash": "LXybBZOTl/9T0nUXzSxH3v4yir4yc1fP4+ZcsX83l12lzcvomg7kozaFt8p37+GzYIgYcIglUsyxg7VqZC1c9w=="
"requested": "[2021.12.15, )",
"resolved": "2021.12.15",
"contentHash": "YXKxGYWvA5+cLvJXlzcsYOS55q1g/QKzLgy1QNGnyWgTYk91z1scufLb4aMb6lSfQhTPUpEB3ajyupwqtI8uOg=="
},
"BepInEx.AutoPlugin": {
"type": "Direct",
Expand Down
6 changes: 3 additions & 3 deletions Reactor.Example/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
".NETStandard,Version=v2.1": {
"AmongUs.GameLibs.Steam": {
"type": "Direct",
"requested": "[2021.12.14, )",
"resolved": "2021.12.14",
"contentHash": "LXybBZOTl/9T0nUXzSxH3v4yir4yc1fP4+ZcsX83l12lzcvomg7kozaFt8p37+GzYIgYcIglUsyxg7VqZC1c9w=="
"requested": "[2021.12.15, )",
"resolved": "2021.12.15",
"contentHash": "YXKxGYWvA5+cLvJXlzcsYOS55q1g/QKzLgy1QNGnyWgTYk91z1scufLb4aMb6lSfQhTPUpEB3ajyupwqtI8uOg=="
},
"BepInEx.AutoPlugin": {
"type": "Direct",
Expand Down
2 changes: 1 addition & 1 deletion Reactor/Patches/CustomServersPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static bool Prefix(ref UnityUdpClientConnection __result, string targetIp
if (serverManager.CurrentRegion.TryCast<DnsRegionInfo>() is not { } regionInfo || !regionInfo.Fqdn.EndsWith("among.us"))
{
var remoteEndPoint = new IPEndPoint(IPAddress.Parse(targetIp), targetPort - 3);
__result = new UnityUdpClientConnection(remoteEndPoint);
__result = new UnityUdpClientConnection(null, remoteEndPoint);
return false;
}

Expand Down
6 changes: 3 additions & 3 deletions Reactor/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
".NETStandard,Version=v2.1": {
"AmongUs.GameLibs.Steam": {
"type": "Direct",
"requested": "[2021.12.14, )",
"resolved": "2021.12.14",
"contentHash": "LXybBZOTl/9T0nUXzSxH3v4yir4yc1fP4+ZcsX83l12lzcvomg7kozaFt8p37+GzYIgYcIglUsyxg7VqZC1c9w=="
"requested": "[2021.12.15, )",
"resolved": "2021.12.15",
"contentHash": "YXKxGYWvA5+cLvJXlzcsYOS55q1g/QKzLgy1QNGnyWgTYk91z1scufLb4aMb6lSfQhTPUpEB3ajyupwqtI8uOg=="
},
"BepInEx.AutoPlugin": {
"type": "Direct",
Expand Down

0 comments on commit 89a8ada

Please sign in to comment.