From b3fb15e116942f14f146c80a87aec915d21237e6 Mon Sep 17 00:00:00 2001 From: synthtwo <127706731+SynthTwo@users.noreply.github.com> Date: Fri, 11 Oct 2024 21:12:48 +0100 Subject: [PATCH] adds california --- modular_iris/code/__DEFINES/send2relay.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modular_iris/code/__DEFINES/send2relay.dm b/modular_iris/code/__DEFINES/send2relay.dm index 15a6908c395a..f4d9e4a163eb 100644 --- a/modular_iris/code/__DEFINES/send2relay.dm +++ b/modular_iris/code/__DEFINES/send2relay.dm @@ -1,9 +1,11 @@ #define US_EAST_RELAY_ADDR "byond://useast.irisstation.lol:4200" +#define US_WEST_RELAY_ADDR "byond://uswest.irisstation.lol:4200" #define SYDNEY_RELAY_ADDR "byond://sydney.irisstation.lol:4200" #define SINGAPORE_RELAY_ADDR "byond://singapore.irisstation.lol:4200" #define NO_RELAY_ADDR "byond://play.irisstation.lol:4200" #define US_EAST_RELAY "Connect to US-East (Virginia)" +#define US_WEST_RELAY "Connect to US-West (California)" #define SYDNEY_RELAY "Connect to Sydney (Australia)" #define SINGAPORE_RELAY "Connect to Singapore (Asia)" #define NO_RELAY "No Relay (Direct Connect)" @@ -11,6 +13,7 @@ /client/verb/go2relay() var/list/static/relays = list( US_EAST_RELAY, + US_WEST_RELAY, SYDNEY_RELAY, SINGAPORE_RELAY, NO_RELAY, @@ -20,6 +23,8 @@ switch(choice) if(US_EAST_RELAY) destination = US_EAST_RELAY_ADDR + if(US_WEST_RELAY) + destination = US_WEST_RELAY_ADDR if(SYDNEY_RELAY) destination = SYDNEY_RELAY_ADDR if(SINGAPORE_RELAY) @@ -34,11 +39,13 @@ usr << "You didn't select a relay." #undef US_EAST_RELAY_ADDR +#undef US_WEST_RELAY_ADDR #undef SYDNEY_RELAY_ADDR #undef SINGAPORE_RELAY_ADDR #undef NO_RELAY_ADDR #undef US_EAST_RELAY +#undef US_WEST_RELAY #undef SYDNEY_RELAY #undef SINGAPORE_RELAY #undef NO_RELAY