3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-12-26 16:12:46 +01:00

Clean up formatting

Dieser Commit ist enthalten in:
DoctorMacc 2020-07-01 08:22:21 -04:00
Ursprung 81651cfac5
Commit 51dfda1c91

Datei anzeigen

@ -89,7 +89,7 @@ public class BiomeTranslator {
} else if (biomeId >= 40 && biomeId <= 43) { // Java has multiple End dimensions that Bedrock doesn't recognize
biomeId = 9;
} else if (biomeId >= 170) { // Nether biomes. Dunno why it's like this :microjang:
biomeId = biomeId + 8;
biomeId += 8;
}
return (byte) biomeId;
}