Skip to content

Commit

Permalink
Fix: ConfigBooleanHotkeyed constructor was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko committed Jul 11, 2024
1 parent 159eec2 commit 0b25d94
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ public ConfigBooleanHotkeyed(String name, boolean defaultValue, String defaultHo
this(name, defaultValue, defaultHotkey, KeybindSettings.DEFAULT, comment, prettyName, name);
}

public ConfigBooleanHotkeyed(String name, boolean defaultValue, String defaultHotkey, KeybindSettings settings, String comment, String prettyName)
{
this(name, defaultValue, defaultHotkey, settings, comment, prettyName, name);
}

public ConfigBooleanHotkeyed(String name, boolean defaultValue, String defaultHotkey, KeybindSettings settings, String comment, String prettyName, String translatedName)
{
super(name, defaultValue, comment, prettyName, translatedName);
Expand Down

0 comments on commit 0b25d94

Please sign in to comment.