The Tier 4 Ore Prospector is not showing up in JEI in Age 4.
Seems Age 4 did not trigger correctly, here is a screenshot of what the in game chat looks like along with /gamestage info @p
Do you get it if you relog into the server? Some people in discord were just talking about how advancements are all stored serverside (in relation to a different bug)
Seems Age 4 did not trigger correctly, here is a screenshot of what the in game chat looks like along with
/gamestage info @p
@Darkosto @justinrusso
Apparently, you can only have one setRewardFunction, as can be seen in this example I found in the Triumph mod documentation (using jd-gui navigate to Triumph-1.12.2-1.8.0.jar\defaultconfigs\script\example\example_all_rewards.txt)
Also worth noting, it seems only one item (setRewardItem) can be awarded (without using a function/trigger).
//Adds a recipe to reward upon completion. Multiple of these can be added.
addRewardRecipe("minecraft:ender_eye")
//Sets the function to fire upon completion. Only one of these can be set.
setRewardFunction("triumph:happy_birthday")
//Sets the experience to reward upon completion. This can only be set once.
setRewardExperience(42)
//Adds a Skillable mod skill level up to be rewarded upon completion. Multiple of these can be added.
addRewardSkillable("mining", 1)
//Adds an item to be rewarded upon completion. Only one of these can be set currently.
//setRewardItem("minecraft:stick")
//setRewardItem("minecraft:stick", 0)
//setRewardItem("minecraft:stick", 0, 1)
setRewardItem("minecraft:stick", 0, 1, {ench:[{lvl:1s,id:51s}],display:{Name:"The Stick of Truth"}})
The other advancement that uses setRewardFunction twice is the triumph:stage2/mapping
Multiple functions can now be run within advancements. The mod updated to allow this and should fix this bug.