Skip to content

Commit

Permalink
Change type of RicochetParams to float (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerxes-17 authored Jan 26, 2024
1 parent 7f1b2e8 commit d5a2948
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RatStash/Item/CompoundItem/Equipment/ArmoredEquipment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ public List<ArmorPlateCollider> GetArmorPlateColliders()
public class RicochetParams
{
[JsonProperty("x")]
public int X { get; set; }
public float X { get; set; }

[JsonProperty("y")]
public int Y { get; set; }
public float Y { get; set; }

[JsonProperty("z")]
public int Z { get; set; }
public float Z { get; set; }
}

0 comments on commit d5a2948

Please sign in to comment.