From 0c0e042c49214df4d1b5cfdcf6122e95ff478726 Mon Sep 17 00:00:00 2001 From: Miepee Date: Mon, 24 Jun 2024 21:45:45 +0200 Subject: [PATCH] Fix wave values being int instead of double --- YAMS-LIB/SeedObject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/YAMS-LIB/SeedObject.cs b/YAMS-LIB/SeedObject.cs index 5c7176e..7661fa9 100644 --- a/YAMS-LIB/SeedObject.cs +++ b/YAMS-LIB/SeedObject.cs @@ -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")]