diff options
Diffstat (limited to 'core/src/client')
| -rw-r--r-- | core/src/client/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/client/client.rs b/core/src/client/client.rs index c11bb61..e861168 100644 --- a/core/src/client/client.rs +++ b/core/src/client/client.rs @@ -1,4 +1,4 @@ -use crate::constants::DEFAULT_PORT; +use crate::constants::DEFAULT_PORT_UDP; use crate::player::player_info::PlayerInfo; use std::net::SocketAddr; @@ -14,7 +14,7 @@ impl Default for PadClient { fn default() -> Self { PadClient { player_info: PlayerInfo::default(), - remote_addr: SocketAddr::from(([127, 0, 0, 1], DEFAULT_PORT)), + remote_addr: SocketAddr::from(([127, 0, 0, 1], DEFAULT_PORT_UDP)), receive_skin_package: true } } |
