diff options
| author | 2021-03-02 05:39:12 +0000 | |
|---|---|---|
| committer | 2021-03-02 05:56:56 +0000 | |
| commit | 4e488cb54d72fb4a1caa580f6756a6f4687beaf6 (patch) | |
| tree | ae74c5dc12685a23ede19a299753aed30c336960 /src/mode.cpp | |
| parent | Move aligned_storage to the utility directory and clean up. (diff) | |
Refactor classbase/CullResult into Cullable/Cullable::Result.
Diffstat (limited to 'src/mode.cpp')
| -rw-r--r-- | src/mode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index 59f8dd4e0..69a07c164 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -40,11 +40,11 @@ ModeHandler::ModeHandler(Module* Creator, const std::string& Name, char modelett { } -CullResult ModeHandler::cull() +Cullable::Result ModeHandler::Cull() { if (ServerInstance) ServerInstance->Modes.DelMode(this); - return classbase::cull(); + return Cullable::Cull(); } bool ModeHandler::NeedsParam(bool adding) const |
