Add enchantment table book on chunk load (#568)

Java's block entity ID is enchantment_table whereas Bedrock's is EnchantTable; this commit adds an exception to the block entity regex as such.
This commit is contained in:
Camotoy 2020-05-17 00:59:03 -04:00 committed by GitHub
parent 95b7055c10
commit 57717795a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ public class BlockEntityUtils {
if (id.contains("EnderChest"))
return "EnderChest";
if (id.contains("enchanting_table")) {
return "EnchantTable";
}
id = id.toLowerCase()
.replace("minecraft:", "")
.replace("_", " ");