Uppercase letter in command name causes the command to be unusable
type: bugarea: core
Example:
```ts
@Command({
name: "reSet",
description: "Reset a player's data",
arguments: [
{
name: "player",
description: "The player whose data should be reset",
type: CenturionType.Player,
},
],
})
```
Attempting to use "reSet" (or "reset", "RESET") will always say command not found. Argument hints are also not shown.
关闭于 2024-10-04 0 条评论