diff options
Diffstat (limited to 'modules/commands')
-rw-r--r-- | modules/commands/cs_info.cpp | 2 | ||||
-rw-r--r-- | modules/commands/cs_set.cpp | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/modules/commands/cs_info.cpp b/modules/commands/cs_info.cpp index a52c43d87..e3a9dc743 100644 --- a/modules/commands/cs_info.cpp +++ b/modules/commands/cs_info.cpp @@ -37,7 +37,7 @@ class CommandCSInfo : public Command bool show_all = false; /* Should we show all fields? Only for sadmins and identified users */ - if (has_auspex || source.AccessFor(ci).HasPriv("INFO")) + if (source.AccessFor(ci).HasPriv("INFO") || has_auspex) show_all = true; InfoFormatter info(nc); diff --git a/modules/commands/cs_set.cpp b/modules/commands/cs_set.cpp index 75c9348fe..782e1d6a0 100644 --- a/modules/commands/cs_set.cpp +++ b/modules/commands/cs_set.cpp @@ -1331,10 +1331,6 @@ class CSSet : public Module info.AddOption(_("Keep modes")); if (noautoop.HasExt(ci)) info.AddOption(_("No auto-op")); - - time_t chanserv_expire = Config->GetModule("chanserv")->Get<time_t>("expire", "14d"); - if (!noexpire.HasExt(ci) && chanserv_expire && !Anope::NoExpire) - info[_("Expires")] = Anope::strftime(ci->last_used + chanserv_expire, source.GetAccount()); } }; |