vytskalt

Results 32 comments of vytskalt

> Pretty sure using non-standard numbers can lead to odd behaviour with items in inventories hence why I blocked them. That would require some research if all supported versions can...

> A zero as a number can be usefull for come GUI design situations, but if it's deprecated / unsafe by minecraft, the using of it is questionable. One more...

Maybe add a new launch method which will run `runBlocking` instead if the plugin is disabled? So we don't need to do something like this: ```kotlin if (!plugin.isEnabled) { runBlocking...

> Hm... why would you need that in the first place? Just call runBlocking once in your onDisable function and call your other suspend functions. > > ```kotlin > override...

I got the same issue in my minigame. Double jumping is one of the most important mechanics in the game and players who have the anti-cheat on can't do it...

I've been trying this out. Looks like when using a long text some of the last words are being skipped in the alignment file.

> @vytskalt can you provide an example so I can debug/fix it? Yes, this is the command I'm running: ```console cat text.txt | piper --sentence-silence 0.5 -m en_US-ryan-high --output_file out.wav...

In 1.20.2 an enum (DisplaySlot) is used for the position instead of an integer, I added a wrapper for it in #2819

I have manually tested everything with the hacky code below on 1.8.9, 1.12.2, 1.13, 1.16.5, 1.17, 1.20.2 and 1.20.4. Everything appears to be working correctly. ```java public void testProtocolLib() {...