From 5fab8d6b5ec5a34bcd0928245820fc91d82e4ee6 Mon Sep 17 00:00:00 2001 From: AwesomeAim <30537683+AwesomeAim@users.noreply.github.com> Date: Fri, 5 May 2023 10:46:31 -0700 Subject: [PATCH] actually save the file --- core/src/server.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/core/src/server.cpp b/core/src/server.cpp index ef86cda..cb075ba 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -281,8 +281,14 @@ void Server::ws_clientConnected() is_at_multiclient_limit = true; if (is_banned) { - QString reason = ban.second; - AOPacket *ban_reason = PacketFactory::createPacket("BD", {reason}); + QString ban_duration; + if (!(ban.second.duration == -2)) { + ban_duration = QDateTime::fromSecsSinceEpoch(ban.second.time).addSecs(ban.second.duration).toString("MM/dd/yyyy, hh:mm"); + } + else { + ban_duration = "The heat death of the universe."; + } + AOPacket *ban_reason = PacketFactory::createPacket("BD", {"Reason: " + ban.second.reason + "\nBan ID: " + QString::number(ban.second.id) + "\nUntil: " + ban_duration}); socket->sendTextMessage(ban_reason->toUtf8()); } if (is_banned || is_at_multiclient_limit) {