Updated packages, take advantage of new eris-fleet features, fixed issue where messages wouldn't send
This commit is contained in:
parent
8431a3ab95
commit
536b931ead
8 changed files with 465 additions and 558 deletions
|
@ -1,9 +1,9 @@
|
|||
// dummy (no-op) database handler
|
||||
import { warn } from "../logger.js";
|
||||
|
||||
warn("Using dummy database adapter. If this isn't what you wanted, check your DB variable.");
|
||||
|
||||
export async function setup() {}
|
||||
export async function setup() {
|
||||
warn("Using dummy database adapter. If this isn't what you wanted, check your DB variable.");
|
||||
}
|
||||
export async function stop() {}
|
||||
export async function fixGuild() {}
|
||||
export async function addCount() {}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export function log(type, content) { return content ? process.send({ op: type, msg: content }) : process.send({ op: "info", msg: type }); }
|
||||
export function log(type, content) { return content ? console[type](content) : console.info(type); }
|
||||
|
||||
export function error(...args) { return log("error", ...args); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue