Archived
0
0
Fork 0

fix: made logger non-static

This commit is contained in:
Daryl Ronningen 2021-11-04 16:08:23 -07:00
parent 1bdf73e0a3
commit b617aa00c2
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B

View file

@ -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);