Mariell Hoversholm
Mariell Hoversholm
When using acf-bungee, on completion it suggests an empty argument when there are nothing but subcommands available; it includes all subcommands (as expected), but drops an empty string at the...
Bungee does not have `OnlinePlayer[]` context resolvers registered, unlike Bukkit: https://github.com/aikar/commands/blob/master/bukkit/src/main/java/co/aikar/commands/BukkitCommandContexts.java#L57
When the signature of the command is as follows: ```java @Default public void test(Player sender, String string, @Default("1") int integer) { ``` and then run `/command` it won't error. This...
I've recently started using idb religiously in my Kotlin projects. Kotlin uses forced nullability and it respects Java (and co.) annotations for nullability and handles it appropriately to force them...
I'm writing a service which is designed to be ran in Docker where SSL really only adds unnecessary overhead and is as such not used. I'd love for a feature...
When one hovers over the `flag?` call in this minimal example, the compiler crashes: ```crystal {% if flag?(:x86_64) %} puts "x86_64!" {% end %} ``` The following is the crash...
A Docker image should be provided to easily use a dockerised set up. It would be very useful for folks like me who don't want to have SQL servers on...
Brigadier's `SuggestionsBuilder#suggest(String, Message)` can be used to insert a tooltip on the suggestion: https://github.com/Mojang/brigadier/blob/872658c7372b47a2938f7a836cd33deebf8feb9a/src/main/java/com/mojang/brigadier/suggestion/SuggestionsBuilder.java#L53 Ideally, Cloud should be able to support these on supported platforms. The goal is this feature:...
This PR takes the goal of adding type-safe sender type casts such that following code can be written: ```java var manager = new ExampleCommandManager(); var command = manager.commandBuilder("example") .senderType(Subtype.class) .handler(ctx...
**Describe this feature briefly** Hangar should support webhooks from GitHub for releases, such that when I release 1 place, it copies the description and links to the GH release/file on...