diff --git a/Core/Helpers/RepeatableQuestHelper.cs b/Core/Helpers/RepeatableQuestHelper.cs index 52ac348b..0fc23564 100644 --- a/Core/Helpers/RepeatableQuestHelper.cs +++ b/Core/Helpers/RepeatableQuestHelper.cs @@ -12,9 +12,7 @@ public class RepeatableQuestHelper /// Level of PMC character /// Main repeatable config /// EliminationConfig - public EliminationConfig GetEliminationConfigByPmcLevel( - int pmcLevel, - RepeatableQuestConfig repeatableConfig) + public EliminationConfig GetEliminationConfigByPmcLevel(int pmcLevel, RepeatableQuestConfig repeatableConfig) { throw new NotImplementedException(); } diff --git a/Core/Models/Eft/Common/Tables/Item.cs b/Core/Models/Eft/Common/Tables/Item.cs index 6688a0d5..d7919a8c 100644 --- a/Core/Models/Eft/Common/Tables/Item.cs +++ b/Core/Models/Eft/Common/Tables/Item.cs @@ -139,10 +139,10 @@ public class UpdFaceShield public class UpdRepairable { [JsonPropertyName("Durability")] - public int? Durability { get; set; } + public double? Durability { get; set; } [JsonPropertyName("MaxDurability")] - public int? MaxDurability { get; set; } + public double? MaxDurability { get; set; } } public class UpdRecodableComponent @@ -154,7 +154,7 @@ public class UpdRecodableComponent public class UpdMedKit { [JsonPropertyName("HpResource")] - public int? HpResource { get; set; } + public double? HpResource { get; set; } } public class UpdSight diff --git a/Core/Services/ItemFilterService.cs b/Core/Services/ItemFilterService.cs index 620457bc..0e48530e 100644 --- a/Core/Services/ItemFilterService.cs +++ b/Core/Services/ItemFilterService.cs @@ -129,4 +129,9 @@ public class ItemFilterService return _lootableItemBlacklistCache.Contains(itemKey); } + + public bool IsItemBlacklisted(string tpl) + { + throw new NotImplementedException(); + } }