Skip to content

Commit

Permalink
fix: forgor
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 1, 2024
1 parent ae9e16d commit 617397e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package net.zepalesque.redux.data.gen.tags;

import com.aetherteam.aether.AetherTags;
import net.minecraft.core.HolderLookup;
import net.minecraft.data.PackOutput;
import net.minecraft.data.tags.BiomeTagsProvider;
import net.neoforged.neoforge.common.data.ExistingFileHelper;
import net.zepalesque.redux.Redux;
import net.zepalesque.redux.data.ReduxTags;

import javax.annotation.Nullable;
import java.util.concurrent.CompletableFuture;
Expand All @@ -18,6 +20,9 @@ public ReduxBiomeTagsGen(PackOutput output, CompletableFuture<HolderLookup.Provi
@SuppressWarnings("unchecked")
@Override
public void addTags(HolderLookup.Provider provider) {


this.tag(ReduxTags.Biomes.HAS_CLOUDBED).addTag(AetherTags.Biomes.IS_AETHER);
this.tag(ReduxTags.Biomes.MODIFY_MUSIC).addTag(AetherTags.Biomes.IS_AETHER);
this.tag(ReduxTags.Biomes.MODIFY_SKY_COLOR).addTag(AetherTags.Biomes.IS_AETHER);
}
}

0 comments on commit 617397e

Please sign in to comment.