diff options
| author | 2020-11-03 22:30:58 +0000 | |
|---|---|---|
| committer | 2020-11-03 22:30:58 +0000 | |
| commit | 3075cc7bd0aa6db5752e76183c267d091584705f (patch) | |
| tree | 0dc08804108dd3391e158ed79a2bbedfed0911dc /src/modules/m_cloaking.cpp | |
| parent | Store the SQL row id in the synthesised sqloper config tags. (diff) | |
Move config typedefs to ServerConfig and use auto in more places.
Diffstat (limited to 'src/modules/m_cloaking.cpp')
| -rw-r--r-- | src/modules/m_cloaking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index fad072489..4cf366ebd 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -426,7 +426,7 @@ class ModuleCloaking : public Module void ReadConfig(ConfigStatus& status) override { - ConfigTagList tags = ServerInstance->Config->ConfTags("cloak"); + auto tags = ServerInstance->Config->ConfTags("cloak"); if (tags.empty()) throw ModuleException("You have loaded the cloaking module but not configured any <cloak> tags!"); |
