This commit is contained in:
rfi
2024-02-22 06:50:42 +07:00
parent b232088f4d
commit 5d39e1c6be
6 changed files with 306 additions and 9 deletions

View File

@@ -8,7 +8,14 @@ namespace BLHX.Server.Game.Handlers
[PacketHandler(Command.Cs24020)]
static void LimitChallengeHandler(Connection connection, Packet packet)
{
connection.Send(new Sc24021());
connection.Send(new Sc24021()
{
Awards = [
new() { Key = 10025, Value = 0 },
new() { Key = 10026, Value = 0 },
new() { Key = 10027, Value = 0 }
]
});
}
}
}