Random832
Random832
For what it's worth, I have a block in my dev project that does basically the same thing as the crafting station for adjacent item handlers, and it crashes in...
I can confirm that this is still present on 1.19. While testing, I noticed that unlike most GUIs, the shift-click action in the terminal [regular click, not dragging, with or...
Maybe instead of "#mymod:tag2" the format should be { "tag": "mymod:tag2" } [likewise { "entry": ... } for single entries], after how ingredients do it. That way all elements of...
I think waxing is better done by adding a ToolAction. For weathering, it may make more sense to have custom blocks override getNext, and add a defaulted getFirst method that...
One possibility for a registry addition on the server that is compatible with vanilla clients would be a modded entity that spawns a vanilla client-side entity in its packet, so...
In general Mekanism and its radioactive stuff is unique in attempting to prevent you from destroying a resource without consequences, there's probably not much precedent elsewhere.
I believe JEI sorts them by the order they appear in creative tabs, not by item ID. It may be possible or desirable to have AE2 sort them either by...
Uh, false alarm there, the code I was looking at did call ToUnicodeEx, but turned out to be using it to inspect keyboard layouts rather than processing actual input. I...
ok, after installing lapce myself (i know, lazy), i observed the following: - contrary to my interpretation of reports, *actual accented letters* entered via the US-Intl layout dead keys on...
I think I have finally figured out what is going on. The `keypress` function https://github.com/lapce/lapce/blob/592cbc7b6f672d2ee56447668a25a271d05877bb/lapce-app/src/keypress.rs#L181 is discarding the `text` from the event, leaving its caller (`key_down` https://github.com/lapce/lapce/blob/592cbc7b6f672d2ee56447668a25a271d05877bb/lapce-app/src/keypress.rs#L201) to infer characters...