4
mirror of git://git.acid.vegas/unrealircd.git synced 2024-11-23 16:36:40 +00:00

Removed sajoin notice (forgot)

This commit is contained in:
Dionysus 2020-07-16 18:31:47 -04:00
parent c1971584d3
commit 1143363444
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -280,7 +280,7 @@ CMD_FUNC(cmd_sajoin)
{ {
if (!sjmode) if (!sjmode)
{ {
sendnotice(target, "*** You were forced to join %s", jbuf); //sendnotice(target, "*** You were forced to join %s", jbuf);
sendto_umode_global(UMODE_OPER, "%s used SAJOIN to make %s join %s", client->name, target->name, jbuf); sendto_umode_global(UMODE_OPER, "%s used SAJOIN to make %s join %s", client->name, target->name, jbuf);
/* Logging function added by XeRXeS */ /* Logging function added by XeRXeS */
ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %s", ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %s",
@ -288,7 +288,7 @@ CMD_FUNC(cmd_sajoin)
} }
else else
{ {
sendnotice(target, "*** You were forced to join %s with '%c'", jbuf, sjmode); //sendnotice(target, "*** You were forced to join %s with '%c'", jbuf, sjmode);
sendto_umode_global(UMODE_OPER, "%s used SAJOIN to make %s join %c%s", client->name, target->name, sjmode, jbuf); sendto_umode_global(UMODE_OPER, "%s used SAJOIN to make %s join %c%s", client->name, target->name, sjmode, jbuf);
ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %c%s", ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %c%s",
client->name, target->name, sjmode, jbuf); client->name, target->name, sjmode, jbuf);