unrealircd

- supernets unrealircd source & configuration
git clone git://git.acid.vegas/unrealircd.git
Log | Files | Refs | Archive | README | LICENSE

commit 1143363444b12b2723d85115c8dc3611d465a570
parent c1971584d315660d9bdace1cf2b95a31c0eed282
Author: acidvegas <acid.vegas@acid.vegas>
Date: Thu, 16 Jul 2020 18:31:47 -0400

Removed sajoin notice (forgot)

Diffstat:
Msrc/modules/sajoin.c | 4++--

1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/sajoin.c b/src/modules/sajoin.c
@@ -280,7 +280,7 @@ CMD_FUNC(cmd_sajoin)
 		{
 			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);
 				/* Logging function added by XeRXeS */
 				ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %s",
@@ -288,7 +288,7 @@ CMD_FUNC(cmd_sajoin)
 			}
 			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);
 				ircd_log(LOG_SACMDS,"SAJOIN: %s used SAJOIN to make %s join %c%s",
 					client->name, target->name, sjmode, jbuf);