Skip to content

Commit

Permalink
Changed End Corruption grass/foliage color to the default grass/folia…
Browse files Browse the repository at this point in the history
…ge block color
  • Loading branch information
Forstride committed Jan 21, 2024
1 parent 7853c86 commit 3079ced
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.20.4 2024-01-20T16:14:11.8687027 Registries
// 1.20.4 2024-01-20T19:42:20.251974 Registries
bec08031dc5126119d3c7a1033703f8235bdf56e data/biomesoplenty/damage_type/bramble.json
41f8df67f585538edc9847b6754275d24b813e06 data/biomesoplenty/damage_type/fumarole.json
1db19ce8d33b8c131955b60ed830200bbee6a912 data/biomesoplenty/worldgen/biome/aspen_glade.json
Expand All @@ -13,7 +13,7 @@ d0c0bdd9fc7b09e7d046e35faea8cc6d752b468a data/biomesoplenty/worldgen/biome/crag.
401cb408a8b99f3fd8b696f9759d9f1f8a1a945e data/biomesoplenty/worldgen/biome/dead_forest.json
506de7d82a9bf0a7caea3390590dc9d1fa2028b0 data/biomesoplenty/worldgen/biome/dryland.json
d4a9226ceaef3cf4eed45892e027c1eabf9fcd72 data/biomesoplenty/worldgen/biome/dune_beach.json
e289a828bcaa9b7da333c3a5c968d7294e1f3f1e data/biomesoplenty/worldgen/biome/end_corruption.json
9ed1682626703efc2dc7ab64360f99e116f64f63 data/biomesoplenty/worldgen/biome/end_corruption.json
b3eae91d1d02cfda03e70a555aaaa1bc7028bd61 data/biomesoplenty/worldgen/biome/end_reef.json
3a72fd6fdefdedcc67c90d5a8b06fc647086fc83 data/biomesoplenty/worldgen/biome/end_wilds.json
a89d541384f1a879bb82d9c984d98c512474d27c data/biomesoplenty/worldgen/biome/erupting_inferno.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
"foliage_color": 0,
"grass_color": 0,
"foliage_color": 4764952,
"grass_color": 8174955,
"mood_sound": {
"block_search_extent": 8,
"offset": 2.0,
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/biomesoplenty/biome/BOPEndBiomes.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static Biome endCorruption(HolderGetter<PlacedFeature> placedFeatureGette

return new Biome.BiomeBuilder()
.hasPrecipitation(false).temperature(0.5F).downfall(0.5F)
.specialEffects(new BiomeSpecialEffects.Builder().grassColorOverride(0x000000).foliageColorOverride(0x000000).waterColor(4159204).waterFogColor(329011).fogColor(10518688).skyColor(0).ambientParticle(new AmbientParticleSettings(ModParticles.BINARY, 0.000375F)).ambientMoodSound(AmbientMoodSettings.LEGACY_CAVE_SETTINGS).build())
.specialEffects(new BiomeSpecialEffects.Builder().grassColorOverride(0x7CBD6B).foliageColorOverride(0x48B518).waterColor(4159204).waterFogColor(329011).fogColor(10518688).skyColor(0).ambientParticle(new AmbientParticleSettings(ModParticles.BINARY, 0.000375F)).ambientMoodSound(AmbientMoodSettings.LEGACY_CAVE_SETTINGS).build())
.mobSpawnSettings(mobSpawnBuilder.build()).generationSettings(biomeBuilder.build()).build();
}
}

0 comments on commit 3079ced

Please sign in to comment.