diff --git a/src/client/main.cpp b/src/client/main.cpp index 3fb1706..30d517c 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -160,10 +160,14 @@ static void PollEvents() } } -#ifdef NDEBUG -#define WS_URL "ws://deadfish.cz:11200/ws" -#else +#ifndef NDEBUG +#define USE_LOCAL_SERVER +#endif + +#ifdef USE_LOCAL_SERVER #define WS_URL "ws://127.0.0.1:11200/ws" +#else +#define WS_URL "ws://deadfish.cz:11200/ws" #endif