WiredTomato

Results 6 comments of WiredTomato

the window will load up with wayland on GLFW 3.3+ (default for 1.20.1+), the icon won't load unless GLFW version 3.4+ (default for mc 1.21) is in use, everything else...

notably there is a GLFW error printed to the console `65548: Wayland: The platform does not support setting the cursor position` when opening inventories & some other screens, however it...

I had initially removed the hint after testing for that issue on my own system, I've added it back to see if it fixes the issue.

Would a model like this be preferable? ```java @DependsOn(value = "neoforge", condition = Condition.ALL_PRESENT, operator = Operator.AND) @DependsOn(value = {"othermod", "othermod2"}, condition = Condition.AT_LEAST_ONE_PRESENT, operator = Operator.OR) @DependsOn("othermod3") @Mod("testmod") public...

The new model is comprised of AND/ORs and their respective negations ORs are included because there are cases in which multiple mods provide the same public API Negations are included...

Removed ORs and NOTs, `@DependsOn` now only takes an array of modids that must all be present for the class to be loaded