fix: made logger non-static
This commit is contained in:
parent
1bdf73e0a3
commit
b617aa00c2
1 changed files with 1 additions and 2 deletions
|
@ -14,10 +14,9 @@ let isBotReady = false;
|
|||
|
||||
export class NeonClient extends Client {
|
||||
public commands: Collection<string, Command> = new Collection();
|
||||
public logger = new Logger();
|
||||
public ownerID: string;
|
||||
|
||||
public static logger = new Logger();
|
||||
|
||||
public constructor(ownerID: string, options: ClientOptions) {
|
||||
super(options);
|
||||
|
||||
|
|
Reference in a new issue