1
0
forked from akanyan/mu3-mods

fix(MPO): min threshold from 0 to AA

This commit is contained in:
2024-12-24 02:02:03 +00:00
parent 8c532260b3
commit 0ece7d4f42
6 changed files with 25 additions and 16 deletions

View File

@ -22,7 +22,7 @@ class patch_UserOption: UserOption {
SSS1 = 4,
PB = 5,
FB = 6,
ZERO = 7,
AA = 7,
MAX = 7,
Default = 0
}
@ -49,7 +49,7 @@ class patch_UserOption: UserOption {
}
public void set_Abort(eAbort value) {
if(eAbort.MAX < value) {
abort = eAbort.ZERO;
abort = eAbort.AA;
} else if(value < eAbort.OFF) {
abort = eAbort.OFF;
} else {