Skip to content

Commit

Permalink
fix index bug with biome palette
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed Jun 19, 2024
1 parent d0d7a5f commit d7977af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ org.gradle.configureondemand=true
# Enable advanced multi-module optimizations (share tiny-remaper instance between projects)
fabric.loom.multiProjectOptimisation=true
# Mod Properties
baseVersion = 2.9.0
baseVersion = 2.9.1
defaultBranch = 1.20
branch = 1.20
2 changes: 1 addition & 1 deletion libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fl = "0.15.0"
yarn = "1.20.1+build.10"
fapi = "0.83.0+1.20.1"
kaleidoConfig = "0.3.1+1.3.1"
surveyor = "0.5.0+1.20"
surveyor = "0.5.1+1.20"

[plugins]
loom = { id = "fabric-loom", version.ref = "loom" }
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/folk/sisby/antique_atlas/TerrainTiling.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static Pair<TerrainTileProvider, TileElevation> terrainToTileNether(World
if (!fullSummary.exists().get(i)) {
possibleTiles[elevationSize][defaultTile] += EMPTY_PRIORITY;
} else {
Biome biome = biomePalette.get(i);
Biome biome = biomePalette.get(fullSummary.biomes()[i]);
possibleTiles[elevationSize][fullSummary.biomes()[i]] += priorityForBiome(biomeRegistry, biome);
}
}
Expand Down

0 comments on commit d7977af

Please sign in to comment.