diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-19 22:53:49 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-19 22:53:49 +0100 |
commit | f5a85c69d225edaed4e11eb4c2b27d66ebc5195e (patch) | |
tree | 6b1cad444b007d6cc565af5ec3bd199a2c6f0b18 /modules/protocol/plexus.cpp | |
parent | c8b38197670965c18df603a5a4329f6f583b77d7 (diff) |
Remove time from the name of some variables where its obvious.
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index 0f2a1ef10..989cfcbc6 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -61,7 +61,7 @@ public: void SendJoin(User *user, Channel *c, const ChannelStatus *status) override { - Uplink::Send("SJOIN", c->creation_time, c->name, "+" + c->GetModes(true, true), user->GetUID()); + Uplink::Send("SJOIN", c->created, c->name, "+" + c->GetModes(true, true), user->GetUID()); if (status) { /* First save the channel status incase uc->Status == status */ |