Fix HeartSize property type in PrideOptions to double for improved precision

This commit is contained in:
CodeDevMLH
2026-02-28 01:54:19 +01:00
parent 3b73dd1728
commit 04616c2ac4

View File

@@ -255,7 +255,7 @@ public class OscarOptions {
public class PrideOptions { public class PrideOptions {
public bool EnablePride { get; set; } = true; public bool EnablePride { get; set; } = true;
public int HeartCount { get; set; } = 20; public int HeartCount { get; set; } = 20;
public int HeartSize { get; set; } = 1.5; public double HeartSize { get; set; } = 1.5;
public bool ColorHeader { get; set; } = true; public bool ColorHeader { get; set; } = true;
} }