forked from GeyserMC/Geyser
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:
parent
95b7055c10
commit
57717795a3
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ public class BlockEntityUtils {
|
||||||
if (id.contains("EnderChest"))
|
if (id.contains("EnderChest"))
|
||||||
return "EnderChest";
|
return "EnderChest";
|
||||||
|
|
||||||
|
if (id.contains("enchanting_table")) {
|
||||||
|
return "EnchantTable";
|
||||||
|
}
|
||||||
|
|
||||||
id = id.toLowerCase()
|
id = id.toLowerCase()
|
||||||
.replace("minecraft:", "")
|
.replace("minecraft:", "")
|
||||||
.replace("_", " ");
|
.replace("_", " ");
|
||||||
|
|
Loading…
Reference in a new issue