Skip to content

Commit

Permalink
Fix the Stream biome specifically not liking high biome IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
48a3efa65c881ef567345b17f3910e06 authored Dec 21, 2024
1 parent ae95b17 commit 8a06e9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public int[] getInts(int par1, int par2, int par3, int par4) {

for (int i = 0; i < par3 * par4; ++i) {
if (riverInputs[i] == TFBiomeBase.stream.biomeID) {
outputs[i] = riverInputs[i] & 255;
outputs[i] = riverInputs[i] & 32767;
} else {
outputs[i] = biomeInputs[i];
}
Expand Down

0 comments on commit 8a06e9a

Please sign in to comment.