diff options
| author | 2020-02-09 16:13:04 +0000 | |
|---|---|---|
| committer | 2020-02-09 17:19:31 +0000 | |
| commit | 61070d489478793a6ba2ad0bd2ecc90d14555030 (patch) | |
| tree | 94f196542ccc3c4cd735730b9e666459a82f574a /src/command_parse.cpp | |
| parent | Move FindUUID to the UserManager class. (diff) | |
Move FindNick to UserManager.
Diffstat (limited to 'src/command_parse.cpp')
| -rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 579c99fd8..d511723dc 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -425,7 +425,7 @@ void CommandParser::TranslateSingleParam(TranslateType to, const std::string& it case TR_NICK: { /* Translate single nickname */ - User* user = ServerInstance->FindNick(item); + User* user = ServerInstance->Users.Find(item); if (user) dest.append(user->uuid); else |
