aboutsummaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-02 05:39:12 +0000
committerGravatar Sadie Powell2021-03-02 05:56:56 +0000
commit4e488cb54d72fb4a1caa580f6756a6f4687beaf6 (patch)
treeae74c5dc12685a23ede19a299753aed30c336960 /src/modules.cpp
parentMove aligned_storage to the utility directory and clean up. (diff)
Refactor classbase/CullResult into Cullable/Cullable::Result.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 15d2f92d3..03b5e1a67 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -52,11 +52,11 @@ Module::Module(int mprops, const std::string& mdesc)
}
// These declarations define the behavours of the base class Module (which does nothing at all)
-CullResult Module::cull()
+Cullable::Result Module::Cull()
{
if (ModuleDLLManager)
ServerInstance->GlobalCulls.AddItem(ModuleDLLManager);
- return classbase::cull();
+ return Cullable::Cull();
}
std::string Module::GetPropertyString() const