Skip to content

Commit

Permalink
Fix for work with changed recoil values from SPT REALISM MOD
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Khudyakov committed Aug 30, 2023
1 parent 52e91d9 commit e912b8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SPT-AKI Profile Editor/Core/ProfileClasses/WeaponBuild.cs
Expand Up @@ -82,10 +82,10 @@ public WeaponBuild(InventoryItem item, List<InventoryItem> items)
public float Ergonomics { get; set; }

[JsonIgnore]
public int RecoilForceUp { get; set; }
public float RecoilForceUp { get; set; }

[JsonIgnore]
public int RecoilForceBack { get; set; }
public float RecoilForceBack { get; set; }

[JsonIgnore]
public bool HasModdedItems { get; set; }
Expand Down
Expand Up @@ -32,9 +32,9 @@ public class TarkovItemProperties

public float Ergonomics { get; set; }

public int RecoilForceUp { get; set; }
public float RecoilForceUp { get; set; }

public int RecoilForceBack { get; set; }
public float RecoilForceBack { get; set; }

public float Recoil { get; set; }

Expand Down

0 comments on commit e912b8c

Please sign in to comment.