Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Killers0992 committed Nov 1, 2024
1 parent 8d83d17 commit 620a1fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions XProxy.Core/Core/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public bool IsConnectionValid
{
get
{
if (_netManager == null)
return false;

if (_connectionRequest != null)
return true;

Expand Down
2 changes: 1 addition & 1 deletion XProxy.Core/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using XProxy.Core.Services;
using XProxy.Services;

[assembly: AssemblyVersion("1.6.4")]
[assembly: AssemblyVersion("1.6.5")]

namespace XProxy
{
Expand Down
2 changes: 1 addition & 1 deletion XProxy.Shared/releaseInfo.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.killers0992.xproxy",
"displayName": "XProxy",
"version": "1.6.4",
"version": "1.6.5",
"buildType": "release",
"gameVersion": "13.6.9"
}

0 comments on commit 620a1fa

Please sign in to comment.