now?
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 55s

This commit is contained in:
CodeDevMLH
2026-02-19 18:51:28 +01:00
parent 82a1e8a178
commit 1df6fb37b1

View File

@@ -30,6 +30,7 @@ public class PluginConfiguration : BasePluginConfiguration
Resurrection = new ResurrectionOptions();
Spring = new SpringOptions();
Summer = new SummerOptions();
CherryBlossom = new CherryBlossomOptions();
Carnival = new CarnivalOptions();
}
@@ -74,6 +75,7 @@ public class PluginConfiguration : BasePluginConfiguration
public ResurrectionOptions Resurrection { get; set; }
public SpringOptions Spring { get; set; }
public SummerOptions Summer { get; set; }
public CherryBlossomOptions CherryBlossom { get; set; }
public CarnivalOptions Carnival { get; set; }
}
@@ -191,7 +193,6 @@ public class ResurrectionOptions
public class SpringOptions
{
public int PetalCount { get; set; } = 25;
public int PollenCount { get; set; } = 15;
public int LadybugCount { get; set; } = 5;
public int SunbeamCount { get; set; } = 5;
@@ -219,3 +220,12 @@ public class CarnivalOptions
public bool EnableRandomCarnivalMobile { get; set; } = false;
public bool EnableDifferentDuration { get; set; } = true;
}
public class CherryBlossomOptions
{
public int PetalCount { get; set; } = 25;
public bool EnableCherryBlossom { get; set; } = true;
public bool EnableRandomCherryBlossom { get; set; } = true;
public bool EnableRandomCherryBlossomMobile { get; set; } = false;
public bool EnableDifferentDuration { get; set; } = true;
}