This commit is contained in:
Dragon Fire
2021-02-10 22:03:23 -05:00
parent a17d44a7fe
commit a0a4e673c0
+1 -1
View File
@@ -60,7 +60,7 @@ module.exports = class EjectCommand extends Command {
const avatar = await loadImage(body);
const random = MersenneTwister19937.seed(user.id);
const imposter = bool()(random);
const text = `${user.username} was${imposter ? '' : ' not '} An Imposter.`;
const text = `${user.username} was${imposter ? ' ' : ' not '}An Imposter.`;
const encoder = new GIFEncoder(320, 180);
const canvas = createCanvas(320, 180);
const ctx = canvas.getContext('2d');