diff --git a/src/s_conf.c b/src/s_conf.c index 127662237..03087a96e 100644 --- a/src/s_conf.c +++ b/src/s_conf.c @@ -7934,6 +7934,13 @@ int _conf_set(ConfigFile *conf, ConfigEntry *ce) tempiConf.away_count = cnt; tempiConf.away_period = period; } + else if (!strcmp(cepp->ce_varname, "invite-flood")) + { + int cnt, period; + config_parse_flood(cepp->ce_vardata, &cnt, &period); + tempiConf.invite_count = cnt; + tempiConf.invite_period = period; + } else if (!strcmp(cepp->ce_varname, "knock-flood")) { int cnt, period;