feat(cli): add command helpers and NotAPlayerError
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export class NotAPlayerError extends Error {
|
||||
constructor(message = 'Command requires a player source.') {
|
||||
super(message);
|
||||
this.name = 'NotAPlayerError';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user