Add some stuff

This commit is contained in:
SELEKCJONER
2024-11-17 22:49:45 +01:00
parent f1e6899fc9
commit 34ce89446e
6 changed files with 46 additions and 26 deletions

View File

@@ -62,6 +62,19 @@ namespace EpinelPS.LobbyServer.Msgs.Event
EventSystemType = 1
},
JoinAt = 0
});
response.EventWithJoinData.Add(new NetEventWithJoinData()
{
EventData = new NetEventData()
{
Id = 70070,
EventSystemType = 6,
EventVisibleDate = DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)).Ticks,
EventStartDate = DateTime.UtcNow.Subtract(TimeSpan.FromDays(1)).Ticks,
EventEndDate = DateTime.Now.AddDays(20).Ticks,
EventDisableDate = DateTime.Now.AddDays(20).Ticks
},
JoinAt = 0
});
await WriteDataAsync(response);