Gavin Lambert
Gavin Lambert
On further reflection, this doesn't actually need to sync `FurnaceRecipes` because we can populate that later from the vanilla recipe sync. (I was stuck thinking that the `CompatibilityManager` needed those...
> could we delay sending this to after player login? No, that won't work, it has to arrive before JEI inits. Besides, this is happening on the event specifically designated...
Resource pack schematics are not supported. The schematics do need to either be in a mod jar or directly in the structurize/schematics folder. The crash occurs because some required schematics...
Chests are purely decorative. Workers ignore their contents and couriers should not be putting items into them. Unless you actually meant racks?
At the research-tree level, it is actually checking for what it claims, so the tooltip is correct. When someone defines a research, they can choose to set a different limit...
Related to ldtteam/minecolonies-features#641 (though a tag is not the right way to do that).
I haven't looked at things recently, but in the past one issue was that it used the coordinate of the corner instead of the coordinate of the center (or vice...
I would assume it's telling you that you specified `strictOrder` and while all the expected calls are being made, they're happening in a different order than you specified in the...
`mock().tracing(true)` or something like that, I think. You might also need to call and print `mock().getTraceOutput()` towards the end of your test as well; I don't recall if that's automatic...
`mock_c()` is just a wrapper for `mock()` calls internally, so there shouldn't be an issue in mixing them. (In fact there's usually no issue using `mock_c()` in your real code...