jaredlll08 / ModTweaker

ModTweaker is an addon for CraftTweaker, which provides Integration for an amount of mods.
MIT License
68 stars 63 forks source link

BWM Filtered Hopper not converting items for recipes added #760

Closed MatokHunt closed 4 years ago

MatokHunt commented 4 years ago

Issue Description:

I’ve created a simple script to add a couple new recipes to the Better With Mods Filtered Hopper. The new recipes show in JEI and appear correct there, however when I throw the items into the hopper they are collected, but not converted to the outputs they should be.

What happens:

After placing a BWM Filtered Hopper and putting my filter item into it (wood block in this case), I then throw either sand or grass into the Filtered Hopper. The Filtered Hopper collects the items that I throw in, but does not convert them. This is different behavior than some of the default recipes.

What you expected to happen:

I expected that when I threw in sand, it would get converted to 9 diamonds, and when I threw in grass it would get converted to 9 diamonds and a piece of flint.

Script used (Please Pastebin or gist your script, posting an unpasted or ungist'd script will automatically close this issue):

test.zs

Minetweaker.log file (Please Pastebin or gist your file, posting an unpasted or ungist'd file will automatically close this issue):

Log File


Affected Versions (Do not use "latest"):

Your most recent log file where the issue was present:

Log File

democat3457 commented 4 years ago

Remove lines 5 and 6. These lines take precedent over your filter recipes. Filtered items indicate which items go straight into the hopper's inventory - thus, if you create recipes with those items as input, they would go straight into the inventory, bypassing the recipes.

MatokHunt commented 4 years ago

That would be it, was confusion on my part. Thought those lines were required to instruct what items are allowed to be used with the filter.

Thanks much for the help.