diff options
author | Sadie Powell <sadie@witchery.services> | 2024-06-23 13:55:25 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-06-23 13:55:25 +0100 |
commit | 59ec42f0e6a49a3a4a2386a392cdfec5906af912 (patch) | |
tree | 1dfff5783bc05573885064dbfd0ccafbb95d236b /modules | |
parent | 8a65f116b693be66b3c3f25f699ee2aef8c0241d (diff) |
Rename suspend in cs_expire to suspendexpire to match ns_expire.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/chanserv/cs_suspend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/cs_suspend.cpp b/modules/chanserv/cs_suspend.cpp index ba63e3f44..03eb36c48 100644 --- a/modules/chanserv/cs_suspend.cpp +++ b/modules/chanserv/cs_suspend.cpp @@ -67,7 +67,7 @@ public: const Anope::string &chan = params[0]; Anope::string expiry = params[1]; Anope::string reason = params.size() > 2 ? params[2] : ""; - time_t expiry_secs = Config->GetModule(this->owner)->Get<time_t>("expire"); + time_t expiry_secs = Config->GetModule(this->owner)->Get<time_t>("suspendexpire"); if (!expiry.empty() && expiry[0] != '+') { |