NotEnoughItems Unofficial 1.7.10

NotEnoughItems Unofficial 1.7.10

436k Downloads

Incorrect Position of Thaumcraft Aspects on NEI Aspect Combination page

ALongStringOfNumbers opened this issue ยท 3 comments

commented

In Gregtech: New Horizons, version 2.1.0.6 with NEI updated to the latest version off of the jenkins, based on commit ae1d0d9

The Aspects shown on the Aspect combining NEI page are not scaled to the length of the entire NEI page, and in addition can render incorrectly, some times even off of the NEI page.

The following images are from looking at the usages of Terra Aspect from NEI:
Page 1:
javaw_2021-05-14_20-16-45

Page 2:
javaw_2021-05-14_20-16-56

Page 3:
javaw_2021-05-14_20-17-05

Page 4:
javaw_2021-05-14_20-17-20

I would expect the aspects to scale all the way down the NEI page, if possible, instead of being divided into multiple pages. In addition, for the aspect combinations to render on the page, instead of off of the page or colliding with other GUI elements.

commented

I believe this has been addressed.

commented

Looks like there's a hard limit of 5 per page. 60 and 5 works ok, unless the code is edited.
image
image

commented
    @Override
    public int recipiesPerPage() {
        return 5;
    }

In the https://github.com/GTNewHorizons/TCNEIAdditions/blob/master/src/main/java/ru/timeconqueror/tcneiadditions/nei/AspectCombinationHandler.java file. Any reason not to change it?