Skip to content

Commit

Permalink
fix: Default port is 7777
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Mar 23, 2020
1 parent c9a42ff commit 960c39d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Mirror.AsyncTcp
public class AsyncTcpTransport : AsyncTransport
{
private TcpListener listener;
public int Port;
public int Port = 7777;

public override Task ListenAsync()
{
Expand Down

0 comments on commit 960c39d

Please sign in to comment.