Skip to content

Commit

Permalink
Update os_regset.cpp
Browse files Browse the repository at this point in the history
Just something minor to use NICK_X_NOT_REGISTERED instead of a custom message.
  • Loading branch information
westor7 authored and genius3000 committed Jun 8, 2020
1 parent fb3749c commit c8c8165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion os_regset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class CommandOSRegSet : public Command
NickAlias *na = NickAlias::Find(target);
if (!na)
{
source.Reply("Nick %s is not registered.", target.c_str());
source.Reply(NICK_X_NOT_REGISTERED, target.c_str());
return;
}

Expand Down

0 comments on commit c8c8165

Please sign in to comment.