diff options
author | Daniel De Graaf <danieldg@inspircd.org> | 2011-06-23 21:01:41 -0400 |
---|---|---|
committer | Daniel De Graaf <danieldg@inspircd.org> | 2011-06-23 21:01:41 -0400 |
commit | a409e402670372588380448f07404894b9154712 (patch) | |
tree | 22fca995ec3389b229ee9d25514a8cff7589170b | |
parent | 197431e44a04b8cbb698687972ea419c74c37ef9 (diff) |
Resolve /STATS S conflict between SVSHOLD and SHUN
-rw-r--r-- | src/modules/m_shun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index 8dc482ccf..017ed174e 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -205,7 +205,7 @@ class ModuleShun : public Module virtual ModResult OnStats(char symbol, User* user, string_list& out) { - if (symbol != 'S') + if (symbol != 'H') return MOD_RES_PASSTHRU; ServerInstance->XLines->InvokeStats("SHUN", 223, user, out); |