Skip to content

Commit

Permalink
Merge branch 'refs/heads/1.20' into 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed Aug 24, 2024
2 parents b8dc13d + c883fb7 commit ed0852a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ We can't draw autotile to save our lives - feel free to [contribute](https://git

This mod is included in [Tinkerer's Quilt Plus](https://modrinth.com/modpack/tinkerers-quilt) - our modpack about rediscovering vanilla.

We're open to suggestions for how to implement stuff better - if you see something wonky and have an idea - let us know.
We're open to better ways to implement our mods. If you see something odd and have an idea, let us know!

---

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ authors=Hunternif, tyra314, Sisby folk
contributors=Kenkron, asiekierka, Haven King, TheCodeWarrior, osipxd, coolAlias, TehNut, lumiscosity, frodolon
license=LGPL-3.0-or-later
# Mod Version
baseVersion=2.9.16
baseVersion=2.9.17
# Branch Metadata
branch=1.21
tagBranch=1.20
Expand Down
1 change: 1 addition & 0 deletions src/main/java/folk/sisby/antique_atlas/TerrainTiling.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ public static Pair<TerrainTileProvider, TileElevation> terrainToTileNether(World
WorldTerrainSummary terrain = WorldSummary.of(world).terrain();
if (terrain == null) return null;
ChunkSummary chunk = terrain.get(pos);
if (chunk == null) return null; // Skip events fired for chunks we don't have yet (e.g. new shares)
@Nullable LayerSummary.Raw lowSummary = chunk.toSingleLayer(null, NETHER_SCAN_HEIGHT, world.getTopY());
@Nullable LayerSummary.Raw fullSummary = chunk.toSingleLayer(null, world.getBottomY() + world.getDimension().logicalHeight() - 1, world.getTopY());
RegistryPalette<Biome>.ValueView biomePalette = terrain.getBiomePalette(pos);
Expand Down

0 comments on commit ed0852a

Please sign in to comment.