From 5656031e0115b9deceb073ff013468a1b25b001f Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 21 Apr 2025 22:00:58 +0100 Subject: [PATCH] changing to structure of LockableComponent from client --- .../Models/Eft/Common/Tables/Item.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs index 7705fc2f..b421fe65 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/Item.cs @@ -362,7 +362,16 @@ public record Upd set; } - public bool? Lockable + public Lockable? Lockable // LockableComponent in the client + { + get; + set; + } +} + +public record Lockable +{ + public bool? Locked { get; set;