diff options
author | Aaron Freytag <aaroncfreytag@gmail.com> | 2021-02-25 14:06:51 -0800 |
---|---|---|
committer | Aaron Freytag <aaroncfreytag@gmail.com> | 2021-02-25 14:06:51 -0800 |
commit | c1c19bd1c8ad3471754bd0b435f1fcc7e95cd7ed (patch) | |
tree | f54e3d2ff7bc3e60c24af0775f66790ef918c3a2 /src | |
parent | 53c08bc6a65d292e70bea9928aca78fd46ff74f7 (diff) |
Level move sanity wasn't properly copied up for split evolutions
Diffstat (limited to 'src')
-rwxr-xr-x | src/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java b/src/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java index 8805d7e..dc6cda5 100755 --- a/src/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java +++ b/src/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java @@ -3450,7 +3450,7 @@ public abstract class AbstractRomHandler implements RomHandler { for (int i = 1; i < toCompat.length; i++) {
toCompat[i] |= fromCompat[i];
}
- }), false);
+ }), true);
this.setTMHMCompatibility(compat);
}
@@ -3630,7 +3630,7 @@ public abstract class AbstractRomHandler implements RomHandler { for (int i = 1; i < toCompat.length; i++) {
toCompat[i] |= fromCompat[i];
}
- }), false);
+ }), true);
this.setMoveTutorCompatibility(compat);
}
|