Skip to content

Commit

Permalink
hard code server to skarman.space
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZoq2 committed Apr 19, 2021
1 parent 68528ce commit e67fbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ impl MainState {

pub fn main() -> Result<(), String> {
let host = std::env::var("SERVER")
.unwrap_or(String::from("localhost:4444"));
.unwrap_or(String::from("skarman.space:4444"));
let stream = TcpStream::connect(host).expect("Could not connect to server");
println!("Connected to server");

Expand Down

0 comments on commit e67fbcc

Please sign in to comment.