1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 21:23:12 +02:00

Removed the old chmode +x = +c and +I = +V support

This commit is contained in:
codemastr
2001-01-13 17:20:41 +00:00
parent a12cf0a9fc
commit dfa4d7c325
2 changed files with 1 additions and 25 deletions
+1
View File
@@ -94,3 +94,4 @@
- Fixed a +f bug reported by Enstyne
- Fixed a SVSMODE/SVS2MODE bug that could cause an incorrect +i and +o count, reported by CaliMonk
- Fixed another SVS2MODE bug that would make it send an empty MODE change
- Removed the old chmode +x = +c and +I = +V support (3.x use +cV and 2.1.7 is obsolete)
-25
View File
@@ -2118,31 +2118,6 @@ void set_mode(chptr, cptr, parc, parv, pcount, pvar, bounce)
MyFree(tmpo);
break;
#endif
case 'x':
if (MyClient(cptr))
{
sendto_one(cptr,
":%s NOTICE %s :*** Mode not set - Please do not use mode +x as this is now named +c instead (Colorblock)",
me.name, cptr->name);
break;
}
else
{
/* compatiblity */
*curchr = 'c';
}
goto jumpdammit;
case 'I':
if (MyClient(cptr))
{
break;
}
else
{
/* compatiblity */
*curchr = 'V';
}
jumpdammit:
default:
found = 0;
tab = &cFlagTab[0];