summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAaron Freytag <aaroncfreytag@gmail.com>2021-02-25 14:06:51 -0800
committerAaron Freytag <aaroncfreytag@gmail.com>2021-02-25 14:06:51 -0800
commitc1c19bd1c8ad3471754bd0b435f1fcc7e95cd7ed (patch)
treef54e3d2ff7bc3e60c24af0775f66790ef918c3a2 /src
parent53c08bc6a65d292e70bea9928aca78fd46ff74f7 (diff)
Level move sanity wasn't properly copied up for split evolutions
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/dabomstew/pkrandom/romhandlers/AbstractRomHandler.java4
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);
}