Skip to content

Commit

Permalink
revert: Revert water color changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 19, 2024
1 parent fa0430a commit 61910df
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ public static void bootstrap(BootstapContext<BiomeModifier> context) {
context.register(SKY_COLOR_AETHER, new ConditionalBiomeModifier(Holder.direct(sky), conditions.get(ReduxConditions.SKY_COLORS).orElseThrow()));

BiomeModifier water = new WaterModifier(
Optional.of(new WaterModifier.DefaultWaterSettings(biomes.getOrThrow(ReduxTags.Biomes.MODIFY_WATER_COLOR), Optional.of(0x74C5E2), Optional.of(0x132126))),
Optional.of(new WaterModifier.DefaultWaterSettings(biomes.getOrThrow(ReduxTags.Biomes.MODIFY_WATER_COLOR), Optional.of(0x85BDD1), Optional.of(0x182226))),
ImmutableMap.<Holder<Biome>, Integer>builder()
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_MEADOW), 0x81D1E8)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_FOREST), 0x68ACD5)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_WOODLAND), 0x5996C6)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_MEADOW), 0x91C8D8)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_FOREST), 0x79A8C4)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_WOODLAND), 0x6A94B5)
.build(),
ImmutableMap.<Holder<Biome>, Integer>builder()
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_MEADOW), 0x1B2528)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_FOREST), 0x111D23)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_WOODLAND), 0x0E171E)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_FOREST), 0x141C21)
.put(biomes.getOrThrow(AetherBiomes.SKYROOT_WOODLAND), 0x10171C)
.build());
context.register(WATER_COLOR_AETHER, new ConditionalBiomeModifier(Holder.direct(water), conditions.get(ReduxConditions.WATER_COLORS).orElseThrow()));

Expand Down

0 comments on commit 61910df

Please sign in to comment.