Revert "Update GetShopProductList.cs"

This reverts commit 8030745337.
This commit is contained in:
Mikhail
2024-12-20 15:58:43 -05:00
parent 8030745337
commit 1e7de0ef8b

View File

@@ -1,5 +1,4 @@
using EpinelPS.StaticInfo;
using EpinelPS.Utils;
using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Shop
{
@@ -11,18 +10,6 @@ namespace EpinelPS.LobbyServer.Msgs.Shop
var req = await ReadData<ReqShopProductList>();
var response = new ResShopProductList();
response.Shops.Add(new NetShopProductData()
{
FreeRenewCount = 1,
ShopTid = 1,
ShopCategory = (int)ShopCategoryType.Normal,
RenewAt = DateTime.Now.AddDays(1).Ticks,
NextRenewAt = DateTime.Now.AddDays(1).Ticks,
RenewCount = 0
});
response.Shops[0].List.Add(new NetShopProductInfoData() { BuyCount = 0, ProductId = 201, CorporationType = 0});
await WriteDataAsync(response);
}
}