Skip to content

Commit

Permalink
random crash hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
connor135246 committed May 20, 2023
1 parent a1b546d commit eccd7c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'maven-publish'
// MixinGradle:
apply plugin: 'org.spongepowered.mixin'

version = '1.18.1-0.2.5'
version = '1.18.1-0.2.6'
group = 'connor135246.simplyhotsprings' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'simplyhotsprings'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public static void updateBiomeGrasses(Object2ObjectOpenHashMap<ResourceKey<Biome
biomeGrasses.clear();
for (Entry<ResourceKey<Biome>, BlockState> entry : newBiomeGrasses.entrySet())
biomeGrasses.put(entry.getKey(), entry.getValue());
biomeGrasses.trim();
//biomeGrasses.trim();
}

public static boolean canReplaceBlock(BlockState state)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ private static void fillBiomeGrasses()
}
}

biomeGrasses.trim();
//biomeGrasses.trim();
}

//
Expand Down Expand Up @@ -498,7 +498,7 @@ public static void finalizeSpringsGeneration(ServerAboutToStartEvent event)
}
});

biomeReasons.trim();
//biomeReasons.trim();
ConfigChanceFilter.updateChance(COMMON.chance.get());
HotSpringsFeature.updateBiomeGrasses(biomeGrasses);
}
Expand Down

0 comments on commit eccd7c2

Please sign in to comment.