Small changes

This commit is contained in:
AeonLucid
2022-01-07 05:01:40 +01:00
parent e0010e1d31
commit 265dce16a0
2 changed files with 6 additions and 6 deletions
@@ -243,8 +243,8 @@ namespace Prospect.Server.Api.Controllers
{ {
["AE"] = 0, ["AE"] = 0,
["AS"] = 0, ["AS"] = 0,
["AU"] = 0, ["AU"] = int.MaxValue,
["SC"] = 30000 ["SC"] = int.MaxValue
}, },
VirtualCurrencyRechargeTimes = new Dictionary<string, FVirtualCurrencyRechargeTime>() VirtualCurrencyRechargeTimes = new Dictionary<string, FVirtualCurrencyRechargeTime>()
} }
@@ -4,16 +4,16 @@ namespace Prospect.Server.Api.Models.CloudScript.Data
{ {
public class FYItemCurrentlyBeingCrafted public class FYItemCurrentlyBeingCrafted
{ {
[JsonPropertyName("")] [JsonPropertyName("itemId")]
public string ItemId { get; set; } public string ItemId { get; set; }
[JsonPropertyName("")] [JsonPropertyName("itemRarity")]
public int ItemRarity { get; set; } public int ItemRarity { get; set; }
[JsonPropertyName("")] [JsonPropertyName("purchaseAmount")]
public int PurchaseAmount { get; set; } public int PurchaseAmount { get; set; }
[JsonPropertyName("")] [JsonPropertyName("utcTimestampWhenCraftingStarted")]
public FYTimestamp UtcTimestampWhenCraftingStarted { get; set; } public FYTimestamp UtcTimestampWhenCraftingStarted { get; set; }
} }
} }