diff options
Diffstat (limited to 'modules/commands/ns_resetpass.cpp')
-rw-r--r-- | modules/commands/ns_resetpass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/ns_resetpass.cpp b/modules/commands/ns_resetpass.cpp index 73759a251..1120cb84a 100644 --- a/modules/commands/ns_resetpass.cpp +++ b/modules/commands/ns_resetpass.cpp @@ -13,7 +13,7 @@ static bool SendResetEmail(User *u, const NickAlias *na, BotInfo *bi); -class CommandNSResetPass +class CommandNSResetPass final : public Command { public: @@ -55,13 +55,13 @@ public: } }; -struct ResetInfo +struct ResetInfo final { Anope::string code; time_t time; }; -class NSResetPass +class NSResetPass final : public Module { CommandNSResetPass commandnsresetpass; |