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:
@@ -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)
|
||||
|
||||
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user