Fix enchantment registry reading (#1902)

Signed-off-by: GoldenStack <goldenfire64yt@gmail.com>
This commit is contained in:
GoldenStack 2023-07-13 17:37:58 -05:00 committed by GitHub
parent 824ae0a25b
commit c5047b8037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -402,10 +402,10 @@ public final class Registry {
main.getInt("id"),
main.getString("translationKey"),
main.getDouble("maxLevel"),
main.getBoolean("isCursed", false),
main.getBoolean("isDiscoverable", true),
main.getBoolean("isTradeable", true),
main.getBoolean("isTreasureOnly", false),
main.getBoolean("curse", false),
main.getBoolean("discoverable", true),
main.getBoolean("tradeable", true),
main.getBoolean("treasureOnly", false),
custom);
}
}