diff options
| author | 2023-11-14 15:16:09 +0000 | |
|---|---|---|
| committer | 2023-11-14 15:16:09 +0000 | |
| commit | 86facc69291a5f992018b51bab8d65100ceaa395 (patch) | |
| tree | f9766a1e0ffa1abeaadacb3c87c8b40db7fd1eef /src/modules/m_alias.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Fix a typo in the alias module.
Diffstat (limited to 'src/modules/m_alias.cpp')
| -rw-r--r-- | src/modules/m_alias.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 82dd1fe48..db339b78f 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -374,10 +374,9 @@ public: else if (!newline.compare(i, 6, "$ident", 6)) { // TODO: remove this in the next major release. - result.append(user->GetRealHost()); + result.append(user->GetRealUser()); i += 5; } - else result.push_back(c); } |
