Merge branch 'main' of https://github.com/sp-tarkov/server-csharp
This commit is contained in:
+841
-80
File diff suppressed because it is too large
Load Diff
@@ -21,9 +21,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();
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -129,4 +129,9 @@ public class ItemFilterService
|
||||
|
||||
return _lootableItemBlacklistCache.Contains(itemKey);
|
||||
}
|
||||
|
||||
public bool IsItemBlacklisted(string tpl)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user