Skip to content

Commit

Permalink
fix: Remove all testing reagents
Browse files Browse the repository at this point in the history
Properly resolves GH-989
Rover656 committed Jan 30, 2025
1 parent d9c5b9b commit cb9d7ff
Showing 3 changed files with 1 addition and 16 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
{
"values": {
"minecraft:wheat": {
"#c:crops": 3.0
}
}
"values": {}
}
Original file line number Diff line number Diff line change
@@ -15,8 +15,6 @@
import net.minecraft.data.tags.IntrinsicHolderTagsProvider;
import net.minecraft.tags.TagKey;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.Items;
import net.neoforged.neoforge.common.Tags;
import net.neoforged.neoforge.common.data.DataMapProvider;
import net.neoforged.neoforge.common.data.ExistingFileHelper;
import org.jetbrains.annotations.Nullable;
@@ -33,10 +31,6 @@ public ReagentDataProvider(PackOutput packOutput, CompletableFuture<HolderLookup
}

protected void gather() {
// FIXME: GH-989, don't add wheat to c:seeds
// also it's weird to re-add wheat to c:crops, but that's less severe.
addReagent(Items.WHEAT, Tags.Items.CROPS, 3D);
// addReagent(Items.WHEAT, Tags.Items.SEEDS, 2D);
}

@Override

0 comments on commit cb9d7ff

Please sign in to comment.