summaryrefslogtreecommitdiff
path: root/modules/protocol/unreal.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-02 23:30:31 -0400
committerAdam <Adam@anope.org>2012-10-02 23:30:31 -0400
commit7551245f5715ecb6615e310c9e488efcabefd3b5 (patch)
tree2f71e4c0647c65b2b5e6758e6fc915819b7a55cc /modules/protocol/unreal.cpp
parent47bc551485f46f6195850be1c2a5edb1d8998e30 (diff)
Attempt #2 at silly topic ts thing, this is actually must cleaner
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r--modules/protocol/unreal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp
index 186fc8563..edfe203ac 100644
--- a/modules/protocol/unreal.cpp
+++ b/modules/protocol/unreal.cpp
@@ -59,7 +59,7 @@ class UnrealIRCdProto : public IRCDProto
void SendTopic(BotInfo *whosets, Channel *c) anope_override
{
- UplinkSocket::Message(whosets) << ") " << c->name << " " << c->topic_setter << " " << c->topic_time + 1 << " :" << c->topic;
+ UplinkSocket::Message(whosets) << ") " << c->name << " " << c->topic_setter << " " << c->topic_ts << " :" << c->topic;
}
void SendGlobalNotice(const BotInfo *bi, const Server *dest, const Anope::string &msg) anope_override