Advent-Of-Ascension icon indicating copy to clipboard operation
Advent-Of-Ascension copied to clipboard

Unable to craft ornate trophy

Open hongze-wu opened this issue 2 years ago • 0 comments

Describe/name the existing feature this suggestion relates to JEI shows recipe for ornate trophy, but it is not craftable even in source code.

Describe the change or feature you think would be good to see I have added one if statement by editing java hex code to allowing ornate trophy in my server. But I just hope it can be available without my tweak.

Add any alternative implementations you think might work net.tslat.aoa3.content.recipe.TrophyRecipe::assemble() After line 69 if (inv.getItem(i).getItem() == AoABlocks.TROPHY.get().asItem()) return TrophyBlock.cloneTrophy(inv.getItem(i), AoABlocks.GOLD_TROPHY.get()); Add if (inv.getItem(i).getItem() == AoABlocks.GOLD_TROPHY.get().asItem()) return TrophyBlock.cloneTrophy(inv.getItem(i), AoABlocks.ORNATE_TROPHY.get()); And then ornate trophy will be craftable. Include any additional background information Somehow I found no issue on this, won't people build farms for all these boss?

hongze-wu avatar Jun 30 '22 13:06 hongze-wu