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

Remove debugging code

Dieser Commit ist enthalten in:
BuildTools 2020-03-27 13:09:40 -04:00
Ursprung 7a402c40b3
Commit 17258dcaf6

Datei anzeigen

@ -107,7 +107,6 @@ public class BlockTranslator {
// The color is in the namespace ID in Java Edition but it's a tag in Bedrock.
JsonNode bedColor = entry.getValue().get("bed_color");
if (bedColor != null) {
System.out.println(bedColor.intValue());
// Converting to byte because the final tag value is a byte. bedColor.binaryValue() returns an array
BEDCOLORS.put(javaBlockState, (byte) bedColor.intValue());
}