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 /include/account.h | |
parent | c8b38197670965c18df603a5a4329f6f583b77d7 (diff) |
Remove time from the name of some variables where its obvious.
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/account.h b/include/account.h index a773f77a6..be130ea95 100644 --- a/include/account.h +++ b/include/account.h @@ -53,7 +53,7 @@ public: Anope::string last_usermask; /* Last uncloaked usermask, requires nickserv/auspex to see */ Anope::string last_realhost; - time_t time_registered = Anope::CurTime; + time_t registered = Anope::CurTime; time_t last_seen = Anope::CurTime; /* Account this nick is tied to. Multiple nicks can be tied to a single account. */ @@ -149,7 +149,7 @@ public: /* Last time an email was sent to this user */ time_t lastmail = 0; /* The time this account was registered */ - time_t time_registered = Anope::CurTime; + time_t registered = Anope::CurTime; MemoInfo memos; std::map<Anope::string, Anope::string> last_modes; |