Precondition not running
I've taken this from a working template project of mine, but I can't for the life of me figure out where this message is coming from.. it works in the template project, and checking the docs I can't see what I'm missing... I'm missing something stupid right? It's sitting in a
preconditions
folder, just the same
The log message is not my own.
2024-11-02 22:59:01 - [WARN] preconditionUnavailable - The precondition "OwnerOnly" is not available.
Solution:Jump to solution
```ts
declare module "@sapphire/framework" {
interface Preconditions {
OwnerOnly: never;
}...
2 Replies