forked from akanyan/mu3-mods
fix(MPO): min threshold from 0 to AA
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user