diff options
Diffstat (limited to 'src/protocol/plexus3.c')
-rw-r--r-- | src/protocol/plexus3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/protocol/plexus3.c b/src/protocol/plexus3.c index d4054d230..05c4c01e7 100644 --- a/src/protocol/plexus3.c +++ b/src/protocol/plexus3.c @@ -1684,7 +1684,8 @@ plexus_cmd_jupe (char *jserver, char *who, char *reason) snprintf (rbuf, sizeof (rbuf), "(H) Juped by %s%s%s", who, reason ? ": " : "", reason ? reason : ""); - plexus_cmd_squit (jserver, rbuf); + if (findserver(servlist, jserver)) + plexus_cmd_squit (jserver, rbuf); plexus_cmd_server (jserver, 2, rbuf); new_server (me_server, jserver, rbuf, SERVER_JUPED, NULL); } |