1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 23:03:13 +02:00

Massively rename Cmode.flag to Cmode.letter.

(similar to 5a387f9c0b)
This commit is contained in:
Bram Matthys
2021-08-22 18:45:13 +02:00
parent 9838378550
commit 52b4a44e94
35 changed files with 100 additions and 100 deletions
+2 -2
View File
@@ -265,10 +265,10 @@ void _join_channel(Channel *channel, Client *client, MessageTag *recv_mtags, int
/* Param fun */
for (cm=channelmodes; cm; cm = cm->next)
{
if (!cm->flag || !cm->paracount)
if (!cm->letter || !cm->paracount)
continue;
if (channel->mode.mode & cm->mode)
cm_putparameter(channel, cm->flag, iConf.modes_on_join.extparams[cm->flag]);
cm_putparameter(channel, cm->letter, iConf.modes_on_join.extparams[cm->letter]);
}
*modebuf = *parabuf = 0;