|
|
@@ -505,6 +505,7 @@ int channel_modify(char *result, struct chanset_t *chan, int items, char **item)
|
|
|
chan->status |= CHAN_INACTIVE;
|
|
|
else if (!strcmp(item[i], "-inactive"))
|
|
|
chan->status&= ~CHAN_INACTIVE;
|
|
|
+#ifdef no
|
|
|
else if (!strcmp(item[i], "+revenge"))
|
|
|
chan->status |= CHAN_REVENGE;
|
|
|
else if (!strcmp(item[i], "-revenge"))
|
|
|
@@ -513,6 +514,7 @@ int channel_modify(char *result, struct chanset_t *chan, int items, char **item)
|
|
|
chan->status |= CHAN_REVENGEBOT;
|
|
|
else if (!strcmp(item[i], "-revengebot"))
|
|
|
chan->status &= ~CHAN_REVENGEBOT;
|
|
|
+#endif
|
|
|
else if (!strcmp(item[i], "+secret"))
|
|
|
chan->status |= CHAN_SECRET;
|
|
|
else if (!strcmp(item[i], "-secret"))
|
|
|
@@ -576,6 +578,10 @@ int channel_modify(char *result, struct chanset_t *chan, int items, char **item)
|
|
|
|
|
|
/* ignore wasoptest, stopnethack and clearbans in chanfile, remove
|
|
|
this later */
|
|
|
+ else if (!strcmp(item[i], "+revenge")) ;
|
|
|
+ else if (!strcmp(item[i], "-revenge")) ;
|
|
|
+ else if (!strcmp(item[i], "+revengebot")) ;
|
|
|
+ else if (!strcmp(item[i], "-revengebot")) ;
|
|
|
else if (!strcmp(item[i], "+manop")) ;
|
|
|
else if (!strcmp(item[i], "-manop")) ;
|
|
|
else if (!strcmp(item[i], "+dontkickops")) ;
|