mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 21:03:42 -07:00
bring max speed back to 5
This commit is contained in:
parent
88b578dd02
commit
694c37cc5f
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ void SohMenu::AddMenuEnhancements() {
|
|||
.Options(IntSliderOptions().Min(0).Max(5).DefaultValue(0).Format("+%d"));
|
||||
AddWidget(path, "Crawl Speed %dx", WIDGET_CVAR_SLIDER_INT)
|
||||
.CVar(CVAR_ENHANCEMENT("CrawlSpeed"))
|
||||
.Options(IntSliderOptions().Min(1).Max(4).DefaultValue(1).Format("%dx"));
|
||||
.Options(IntSliderOptions().Min(1).Max(5).DefaultValue(1).Format("%dx"));
|
||||
AddWidget(path, "Exclude Glitch-Aiding Crawlspaces", WIDGET_CVAR_CHECKBOX)
|
||||
.CVar(CVAR_ENHANCEMENT("GlitchAidingCrawlspaces"))
|
||||
.PreFunc([](WidgetInfo& info) { info.isHidden = CVarGetInteger(CVAR_ENHANCEMENT("CrawlSpeed"), 0) == 1; })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue