Leo

Results 12 comments of Leo

So it is running fine on 1.12 up to 1.20.4, can't tell about 1.20.5 yet. 1.8 has been tested but does not work, it instead returns system language via `Locale.getDefault()`...

`.spigot().getLocale()` doesn't seem to work properly either. In forums I read that for 1.8 you'd have to listen to the settings packet. The PR removed the event listening and replaced...

I am working on an Intellij plugin and already ran into issues with the syntax, since xml uses ':' for namespaces while MiniMessage uses it to separate args. When defining...

I did not mean to bring the "ease of writing an intellij language plugin" as an argument but wanted to emphasize that it has advantages to stay close to XML....

Okay maybe this one will convince you: using `` makes it readable from both directions. Since MiniMessage is mostly used for oneliners thats great because you can be e.g. somewhere...

I thought about it because I made a translation file framework based on MiniMessage. What I chose instead was having more "functional" tags, like ``, `` or `` for the...

Alright thx, sorry for the duplicate. Maybe as requested in the other issue, there could be some accessible information on it, like producing an error or putting it into the...

Hey! I had some issues with the suggested split method in combination with Components parsed from MiniMessage. MiniMessage created TextComponents that had a content like "line1\nline2" and the check for...

https://github.com/CubBossa/ClientEntities/blob/main/src/main/java/de/cubbossa/cliententities/entitydata/EntityDataWrapper.java I did a start here so that my plugin does work with 1.20.2. If you're interested in copying it over just ask

global messages should not be part of base, while a "proxy implementation" should be that only redirects to message service. For message service, JMS comes handy. Platform implementation then creates...