From 77b11cb7f4dba9b0b8cf5ba1a72a2de06b561cab Mon Sep 17 00:00:00 2001 From: CWX Date: Sun, 19 Jan 2025 12:09:48 +0000 Subject: [PATCH] fix typing, woops --- Core/Models/Eft/Common/Tables/Item.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Models/Eft/Common/Tables/Item.cs b/Core/Models/Eft/Common/Tables/Item.cs index c9cf2c23..859d1b5f 100644 --- a/Core/Models/Eft/Common/Tables/Item.cs +++ b/Core/Models/Eft/Common/Tables/Item.cs @@ -50,7 +50,7 @@ public record Upd public string? SptPresetId { get; set; } public UpdFaceShield? FaceShield { get; set; } - public int? StackObjectsCount { get; set; } + public double? StackObjectsCount { get; set; } // can be a string, double or int public bool? UnlimitedCount { get; set; } public UpdRepairable? Repairable { get; set; } public UpdRecodableComponent? RecodableComponent { get; set; }