super programmer extrodinarieaeawdfaw

Results 10 comments of super programmer extrodinarieaeawdfaw

Thanks this is really cool! For the css it the class "container" in board-list.component.html makes the boards display vertically, if you want it horizontal again you can add (not sure...

Ah nice goodluck 👍

Not sure what gamemode you're talking about but you could check the scoreboard for the tick if the bed exists? ![image](https://user-images.githubusercontent.com/37674069/130469596-a7437ab1-8e56-46ec-9885-88999b6bfcb9.png) ![image](https://user-images.githubusercontent.com/37674069/130470672-4fa9d8f1-8f10-426b-80fd-c344f9e33173.png)

Easy win would be to install Imgbot app https://github.com/marketplace/imgbot

You can check for `sun.arch.data.model` which is commonly defined and then fall back to "os.arch" if its not there. Relevant doc: https://docs.oracle.com/javame/config/cdc/cdc-opt-impl/ojmeec/1.1/architecture/html/properties.htm Platform word size. Examples: "32", "64", "unknown" ```...

Ah I see, in that case maybe JNI, JNA but even then its kind of overkill

> Didnt [Filip](https://github.com/1fxe) already do almost this in his Recaf4Forge? It only applies **Forge Mappings** (at this time not ability to unmap it) and ability to **export to Forge MDK**....

You can override the loader in SystemBootstrap before the app is loaded, here's a small example ```java SystemBootstrap.setLoader(libname -> { if (libname.equals("jawt")) { // Do some checking if lib was...

Hey, you should open a pr on bitbucket. Also, I can see one small change fix copyright year 2024. Make sure you also have run the fix style script 😉

I have a proposal for a somewhat hacky solution This is the code in `X11Window` class responsible for making the mouse event. ```java if (xev.get_type() == XConstants.ButtonPress) { MouseWheelEvent mwe...