fix types, added missing method

This commit is contained in:
CWX
2025-01-16 21:46:08 +00:00
parent a0cf0846a6
commit 1ce566c6b4
3 changed files with 9 additions and 6 deletions
+1 -3
View File
@@ -12,9 +12,7 @@ public class RepeatableQuestHelper
/// <param name="pmcLevel">Level of PMC character</param>
/// <param name="repeatableConfig">Main repeatable config</param>
/// <returns>EliminationConfig</returns>
public EliminationConfig GetEliminationConfigByPmcLevel(
int pmcLevel,
RepeatableQuestConfig repeatableConfig)
public EliminationConfig GetEliminationConfigByPmcLevel(int pmcLevel, RepeatableQuestConfig repeatableConfig)
{
throw new NotImplementedException();
}
+3 -3
View File
@@ -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
+5
View File
@@ -129,4 +129,9 @@ public class ItemFilterService
return _lootableItemBlacklistCache.Contains(itemKey);
}
public bool IsItemBlacklisted(string tpl)
{
throw new NotImplementedException();
}
}