mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Remove debugging code
This commit is contained in:
parent
7a402c40b3
commit
17258dcaf6
1 changed files with 0 additions and 1 deletions
|
@ -107,7 +107,6 @@ public class BlockTranslator {
|
||||||
// The color is in the namespace ID in Java Edition but it's a tag in Bedrock.
|
// The color is in the namespace ID in Java Edition but it's a tag in Bedrock.
|
||||||
JsonNode bedColor = entry.getValue().get("bed_color");
|
JsonNode bedColor = entry.getValue().get("bed_color");
|
||||||
if (bedColor != null) {
|
if (bedColor != null) {
|
||||||
System.out.println(bedColor.intValue());
|
|
||||||
// Converting to byte because the final tag value is a byte. bedColor.binaryValue() returns an array
|
// Converting to byte because the final tag value is a byte. bedColor.binaryValue() returns an array
|
||||||
BEDCOLORS.put(javaBlockState, (byte) bedColor.intValue());
|
BEDCOLORS.put(javaBlockState, (byte) bedColor.intValue());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue