Skip to content

Commit c28c27a

Browse files
authored
Disable template application on login if the module is disabled by config.
1 parent e4bd6ef commit c28c27a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ptr_template.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,11 @@ class announce : public PlayerScript {
862862
{
863863
static createTemplate templatevar;
864864

865+
if (!sConfigMgr->GetOption<bool>("TemplateEnable", true))
866+
{
867+
return;
868+
}
869+
865870
if (sConfigMgr->GetOption<bool>("AnnounceEnable", true))
866871
ChatHandler(player->GetSession()).PSendModuleSysMessage(module_string, ALERT_MODULE_PRESENCE);
867872

0 commit comments

Comments
 (0)