Research # Of Repeats bound to wrong variable
pyure opened this issue ยท 1 comments
It should, presumably, say "2" given the script below:
import mods.ResearchTable;
var cat = ResearchTable.addCategory(<minecraft:grass>);
ResearchTable.builder("testResearch1", cat) // The second parameter has no use currently
.setIcons(<minecraft:grass>)
.setTitle("researchtable.quest1.title") // I18n support: use language key
.setDescription("Input your description")
.addCondition(<ore:ingotIron> * 8, <liquid:lava> * 2000)
.setRewardStages("SuperStage1")
.setRewardItems(<minecraft:gold_ingot>, <minecraft:gold_nugget>)
.setMaxCount(2)
.build();