forked from PGR/ascnet
Added more
This commit is contained in:
parent
36c290053a
commit
d3cf94bbb1
|
@ -314,6 +314,26 @@ namespace AscNet.GameServer.Handlers
|
|||
};
|
||||
session.SendPush(notifyFiveTwentyRecord);
|
||||
|
||||
PurchaseDailyNotify purchaseDailyNotify = new()
|
||||
{
|
||||
ExpireInfoList = { },
|
||||
DailyRewardInfoList = { },
|
||||
FreeRewardInfoList = { }
|
||||
};
|
||||
session.SendPush(purchaseDailyNotify);
|
||||
|
||||
NotifyPurchaseRecommendConfig notifyPurchaseRecommendConfig = new()
|
||||
{
|
||||
Data = { }
|
||||
};
|
||||
session.SendPush(notifyPurchaseRecommendConfig);
|
||||
|
||||
NotifyBackgroundLoginData notifyBackgroundLoginData = new()
|
||||
{
|
||||
HaveBackgroundIds = { }
|
||||
};
|
||||
session.SendPush(notifyBackgroundLoginData);
|
||||
|
||||
NotifyMedalData notifyMedalData = new()
|
||||
{
|
||||
MedalInfos = { }
|
||||
|
@ -470,6 +490,8 @@ namespace AscNet.GameServer.Handlers
|
|||
};
|
||||
session.SendPush(notifyTrialData);
|
||||
|
||||
|
||||
|
||||
NotifyPivotCombatData notifyPivotCombatData = new()
|
||||
{
|
||||
PivotCombatData = { }
|
||||
|
|
Loading…
Reference in New Issue