Devbranch build issue
00001H opened this issue ยท 2 comments
Describe the Bug
Errors while building:
D:\SCRIPT_LOCATION\Create\src\main\java\com\simibubi\create\foundation\ponder\PonderScene.java:252: error: method renderOutlines in class Outliner cannot be applied to given types;
outliner.renderOutlines(ms, buffer, Vec3.ZERO, pt);
^
required: PoseStack,SuperRenderTypeBuffer,float
found: PoseStack,SuperRenderTypeBuffer,Vec3,float
reason: actual and formal argument lists differ in length
D:\SCRIPT_LOCATION\Create\src\main\java\com\simibubi\create\foundation\ponder\element\WorldSectionElement.java:402: error: method render in class AABBOutline cannot be applied to given types;
aabbOutline.render(ms, (SuperRenderTypeBuffer) buffer, Vec3.ZERO, pt);
^
required: PoseStack,SuperRenderTypeBuffer,float
found: PoseStack,SuperRenderTypeBuffer,Vec3,float
reason: actual and formal argument lists differ in length
Reproduction Steps
- Get 1.18/dev as of b4a8386
- Try to build
- Observe error
Expected Result
Build success
Screenshots and Videos
N/A: Not runtime issue
Crash Report or Log
N/A: Not runtime issue
Operating System
Windows 10
Mod Version
0.5.0j
Minecraft Version
1.18.2
Forge Version
N/A: Not a runtime issue
Other Mods
N/A: Not a runtime issue
Additional Context
I'm currently attempting the obvious fix of just removing the arguments.
The CI successfully built this commit, so there is an issue with your build setup.
@PepperCode1 It seems like that some of my files(namely, the classes not in com.simibubi.create.foundation.ponder, which includes the referenced Outliner.java) were not updated.
Maybe that's why the outlines look weird in my build...
Thank you!