diff --git a/CS2Interface/Data/InventoryItem.cs b/CS2Interface/Data/InventoryItem.cs index 498dfe2..2be0e12 100644 --- a/CS2Interface/Data/InventoryItem.cs +++ b/CS2Interface/Data/InventoryItem.cs @@ -156,7 +156,7 @@ private bool ParseAttributes(List? attributes) { case "float": case null when attribute_def["stored_as_integer"].Value == "0": - Attributes.Add(attribute_name, new Attribute(attribute_name, BitConverter.ToSingle(attribute.value_bytes.ToArray(), 0))); + Attributes.Add(attribute_name, new Attribute(attribute_name, BitConverter.ToSingle(attribute.value_bytes.ToArray()))); break; case "string":