mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Fix a bug in weighted-settings causing accepted range values to be exclusive of outer range (#2535)
This commit is contained in:
@@ -576,7 +576,7 @@ class GameSettings {
|
|||||||
option = parseInt(option, 10);
|
option = parseInt(option, 10);
|
||||||
|
|
||||||
let optionAcceptable = false;
|
let optionAcceptable = false;
|
||||||
if ((option > setting.min) && (option < setting.max)) {
|
if ((option >= setting.min) && (option <= setting.max)) {
|
||||||
optionAcceptable = true;
|
optionAcceptable = true;
|
||||||
}
|
}
|
||||||
if (setting.hasOwnProperty('value_names') && Object.values(setting.value_names).includes(option)){
|
if (setting.hasOwnProperty('value_names') && Object.values(setting.value_names).includes(option)){
|
||||||
|
Reference in New Issue
Block a user