Braxton Hall
Braxton Hall
### Why? When a player begins typing in the Minecraft chat, have the bot begin typing in the main chat channel. ### What and How? With 1.19's addition of `previews-chat`...
### Why? Purely out of convenience, it would be nice to be able to auto complete a discord mention, as it's not always easy to remember the exact spelling of...
[The current method](https://github.com/DiscordSRV/DiscordSRV/blob/018b179dcd65f1833169a406af3c35d042d0b809/src/main/java/github/scarsz/discordsrv/util/DiscordUtil.java#L138) which convert `@mentions` into Discord-compatible `` mentions first replaces roles in an arbitrary order, then each member in an arbitrary order. This often leads to false matches....
- resolves #411 - resolves #437 Unfortunately this would be a breaking change, as anyone who explicitly annotated the types like `orElse(foo)` will need to update their code to `orElse(foo)`
`combineWithAllErrors` provides types that are not necessarily correct. ```typescript const foo: Result = ok("a"); const bar: Result = err("d"); Result.combineWithAllErrors([foo, bar]).mapErr((errors) => { errors satisfies ["b", "d"]; // should NOT...
When writing a match in neverthrow, the `ok` and `err` callbacks _must_ have the same `ReturnType` in their signature. This means the following code results in an error ```typescript declare...
Minecraft: 1.19 Mod: 2.3.1+1.19 ## Details If on a server, when pressing Q to discard the item selected in your hotbar, no sound is played. However if you open your...
Wondering if it would be possible to support tree-sitter, which may allow code shovel to automatically support all the languages tree-sitter supports
resolves #14 - [ ] Add Oracles - [ ] Make getParent more robust
It seems to be used perfectly in Java In Python it is used for default arguments Perhaps this could be extended to the `*` and `**`? However I think these...