Max Kreminski

Results 25 comments of Max Kreminski

Thanks for letting me know! I've been leaning toward deploying future versions primarily as browser extensions (with the payload script included in the extension rather than loaded remotely from a...

Good catch! I think this one could be rationalized by saying the "peacekeeping forces" of the united government were the ones to deploy the AI, but in that case there...

Nice catch – I'd originally intended to have a slightly more complex interaction between nanobots and space colonization tech, but wound up having to cut that in order to make...

Thanks for the feedback, and glad to hear you're enjoying the game! I am interested in further development – I'd especially like to add back in some of the planned...

That's odd. Using `\n` is the canonical "right way" to insert linebreaks into the message text; I have no idea why it's behaving differently on two different Spigot versions. Could...

It looks like `.itemTooltip()`, along with `.achievementTooltip()` and `.statisticTooltip()`, was removed as part of commit https://github.com/mkremins/fanciful/commit/11a7e606650bf59351b3ebfce2da3af13b7e898b, which was intended to remove Fanciful's dependency on `net.minecraft.server` APIs and reflection. When I...

From the stack trace, it looks like `API.getUniqueIdentifier().getName(uuid)` is returning null instead of a string. This causes Fanciful to complain because you're feeding that null value to `FancyMessage.text()`, which requires...

As far as I know this can't be done reliably. Minecraft permits variable-width fonts in texture packs, and the server has no way of getting information about which font the...

What server software are you using? It looks like the `Player` instance doesn't contain a `playerConnection` field, which is causing Fanciful's reflection hackery to fail.

It looks like Spigot's implementation of the Bukkit `Player` interface has diverged enough from the CraftBukkit implementation against which Fanciful was originally written that `FancyMessage.send` won't work on Spigot servers....