diff options
Diffstat (limited to 'src/protocol/unreal31.c')
-rw-r--r-- | src/protocol/unreal31.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/protocol/unreal31.c b/src/protocol/unreal31.c index 7a8c2baf0..8ccb26ee2 100644 --- a/src/protocol/unreal31.c +++ b/src/protocol/unreal31.c @@ -1416,7 +1416,8 @@ void unreal_cmd_jupe(char *jserver, char *who, char *reason) snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, reason ? ": " : "", reason ? reason : ""); - unreal_cmd_squit(jserver, rbuf); + if (findserver(servlist, jserver)) + unreal_cmd_squit(jserver, rbuf); unreal_cmd_server(jserver, 2, rbuf); new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); } |