Skip to content

Commit

Permalink
Fixes #50, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepperoni-Jabroni committed Jul 13, 2022
1 parent c189432 commit 8b1816f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.14.6

# Mod Properties
mod_version = 2.0.0
mod_version = 2.0.1
maven_group = pepjebs
archives_base_name = map-atlases

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public float getPredicateForAtlas(
LivingEntity entity,
int _seed) {
// Using ClientWorld will render default Atlas in inventories
if (entity.world == null) return 0.0f;
if (entity == null || entity.world == null) return 0.0f;
if (entity.world.getRegistryKey() == World.OVERWORLD) return 0.1f;
if (entity.world.getRegistryKey() == World.NETHER) return 0.2f;
if (entity.world.getRegistryKey() == World.END) return 0.3f;
Expand Down

0 comments on commit 8b1816f

Please sign in to comment.