Skip to content

Commit

Permalink
Fix wave values being int instead of double
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee committed Jun 24, 2024
1 parent a1ed8f1 commit 0c0e042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions YAMS-LIB/SeedObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -627,11 +627,11 @@ public enum LiquidTypeEnum

[JsonInclude]
[JsonPropertyName("wave_speed")]
public int WaveSpeed;
public double WaveSpeed;

[JsonInclude]
[JsonPropertyName("wave_height")]
public int WaveHeight;
public double WaveHeight;

[JsonInclude]
[JsonPropertyName("should_be_at_very_front")]
Expand Down

0 comments on commit 0c0e042

Please sign in to comment.