diff options
Diffstat (limited to 'modules/core/gl_main.cpp')
-rw-r--r-- | modules/core/gl_main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/gl_main.cpp b/modules/core/gl_main.cpp index 84eea0e20..4b512ca0a 100644 --- a/modules/core/gl_main.cpp +++ b/modules/core/gl_main.cpp @@ -60,7 +60,7 @@ class GlobalCore : public Module this->SetAuthor("Anope"); this->SetType(CORE); - Implementation i[] = { I_OnPreRestart, I_OnPreShutdown, I_OnNewServer }; + Implementation i[] = { I_OnRestart, I_OnShutdown, I_OnNewServer }; ModuleManager::Attach(i, this, 3); ModuleManager::RegisterService(&this->myglobal); @@ -88,13 +88,13 @@ class GlobalCore : public Module delete Global; } - void OnPreRestart() + void OnRestart() { if (Config->GlobalOnCycle) global->SendGlobal(global->Bot(), "", Config->GlobalOnCycleMessage); } - void OnPreShutdown() + void OnShutdown() { if (Config->GlobalOnCycle) global->SendGlobal(global->Bot(), "", Config->GlobalOnCycleMessage); |