summaryrefslogtreecommitdiff
path: root/src/modules/m_codepage.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-12-22 03:53:00 +0000
committerSadie Powell <sadie@witchery.services>2020-12-22 04:13:56 +0000
commit96befc58f073b4f96771b57d728b16742294c2fe (patch)
tree44be29fcf57e1e5327ac703e30a1c3fa1af90185 /src/modules/m_codepage.cpp
parentaa0221d87ca355d5021f81f8f65cf6a47bc93c38 (diff)
Send RPL_SAVENICK from irc2 when renaming a user to their UUID.
Diffstat (limited to 'src/modules/m_codepage.cpp')
-rw-r--r--src/modules/m_codepage.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_codepage.cpp b/src/modules/m_codepage.cpp
index 7a20e6e52..4054c72c1 100644
--- a/src/modules/m_codepage.cpp
+++ b/src/modules/m_codepage.cpp
@@ -83,7 +83,10 @@ class ModuleCodepage
{
LocalUser* user = *iter;
if (user->nick != user->uuid && !ServerInstance->IsNick(user->nick))
+ {
+ user->WriteNumeric(RPL_SAVENICK, user->uuid, "Your nickname is no longer valid.");
user->ChangeNick(user->uuid);
+ }
}
}