removed 0 add option seconds

This commit is contained in:
2026-01-10 21:41:45 +01:00
parent c111c027ff
commit e760cdb2c6

View File

@@ -29,7 +29,7 @@ public class StickFightFactory implements GameFactory {
public ConfigManager configuration() {
return new ConfigManager()
.addOption(new NumericOption("length", Material.SANDSTONE, TranslatedComponent.byId("optionCommon#length"), 7, 10, 13, 16, 19))
.addOption(new NumericOption("seconds", Material.CLOCK, TranslatedComponent.byId("optionCommon#seconds"), 0, 30, 60, 90, 120));
.addOption(new NumericOption("seconds", Material.CLOCK, TranslatedComponent.byId("optionCommon#seconds"), 30, 60, 90, 120));
}
@Override