Skip to content

Commit

Permalink
Fixed incorrectly used variable
Browse files Browse the repository at this point in the history
  • Loading branch information
trippyone committed Jun 27, 2024
1 parent bcc48ea commit f690608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FikaServerTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ static void Main(string[] args)

if(Config.NatPunchServer.Enable)
{
FikaNatPunchServer fikaNatPunchServer = new FikaNatPunchServer(Config.NatPunchServer);
fikaNatPunchServer.Start();
_fikaNatPunchServer = new FikaNatPunchServer(Config.NatPunchServer);
_fikaNatPunchServer.Start();
}

// Main thread loop
Expand Down

0 comments on commit f690608

Please sign in to comment.