diff --git a/README.md b/README.md index eb996c5..4482117 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ better RAC client - RACv1.99.x and RACv2.0 compatible - WRAC compatible ([docs](docs/wrac.md)) - chat commands (type /help) +- uses tor proxy as default (wracs://meex.lol:11234) - no ip and date visible for anyone (almost) - coloring usernames by their clients (CRAB, clRAC, Mefidroniy, etc.) - many command-line options (see --help) diff --git a/src/chat/config.rs b/src/chat/config.rs index 3345194..6a6e222 100644 --- a/src/chat/config.rs +++ b/src/chat/config.rs @@ -21,7 +21,7 @@ pub fn default_konata_size() -> usize { 100 } pub fn default_host() -> String { - "wracs://meex.lol".to_string() + "wracs://meex.lol:11234".to_string() } pub fn default_message_format() -> String { MESSAGE_FORMAT.to_string() diff --git a/src/chat/mod.rs b/src/chat/mod.rs index b2f69c8..f2d6db1 100644 --- a/src/chat/mod.rs +++ b/src/chat/mod.rs @@ -46,6 +46,7 @@ lazy_static! { ]; pub static ref SERVER_LIST: Vec = vec![ + "wracs://meex.lol:11234".to_string(), "rac://meex.lol".to_string(), "wracs://meex.lol".to_string(), "rac://91.192.22.20".to_string()