1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 02:26:38 +02:00

Stop showing the last real name in the nick information output.

This isn't really used anymore and a lot of clients just set it to
a static string so it doesn't make sense to show it.
This commit is contained in:
Sadie Powell
2025-09-12 15:32:40 +01:00
parent 51916a50d2
commit 535ff9b839
8 changed files with 1 additions and 27 deletions
-2
View File
@@ -155,7 +155,6 @@ void NickAlias::Type::Serialize(Serializable *obj, Serialize::Data &data) const
const auto *na = static_cast<const NickAlias *>(obj);
data.Store("nick", na->nick);
data.Store("last_quit", na->last_quit);
data.Store("last_realname", na->last_realname);
data.Store("last_userhost", na->last_userhost);
data.Store("last_userhost_real", na->last_userhost_real);
data.Store("registered", na->registered);
@@ -208,7 +207,6 @@ Serializable *NickAlias::Type::Unserialize(Serializable *obj, Serialize::Data &d
}
data["last_quit"] >> na->last_quit;
data["last_realname"] >> na->last_realname;
data["last_userhost"] >> na->last_userhost;
data["last_userhost_real"] >> na->last_userhost_real;
data["registered"] >> na->registered;