3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-08 02:40:09 +02:00

Fix trapped chests not displaying (#481)

Dieser Commit ist enthalten in:
rtm516 2020-05-05 01:39:44 +01:00 committet von GitHub
Ursprung 129e10c920
Commit fcf1949b28
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -17,6 +17,9 @@ public class BlockEntityUtils {
if (id.contains("piston_head"))
return "PistonArm";
if (id.contains("trapped_chest"))
return "Chest";
id = id.toLowerCase()
.replace("minecraft:", "")
.replace("_", " ");