Migrate allowJumpAt256 to allowJumpAtBuildLimit in settings files

This commit is contained in:
ZacSharp
2025-05-10 20:24:26 +02:00
parent 0fe8c628c7
commit 31b30e3a31

View File

@@ -83,6 +83,10 @@ public class SettingsUtil {
String settingName = matcher.group("setting").toLowerCase();
String settingValue = matcher.group("value");
// TODO remove soonish
if ("allowjumpat256".equals(settingName)) {
settingName = "allowjumpatbuildlimit";
}
try {
parseAndApply(settings, settingName, settingValue);
} catch (Exception ex) {