mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-16 15:57:54 +02:00
Fix
This commit is contained in:
@@ -111,11 +111,10 @@ module.exports = class UndertaleCommand extends Command {
|
|||||||
ctx.font = this.client.fonts.get(font).toCanvasString(32);
|
ctx.font = this.client.fonts.get(font).toCanvasString(32);
|
||||||
ctx.fillStyle = 'white';
|
ctx.fillStyle = 'white';
|
||||||
ctx.textBaseline = 'top';
|
ctx.textBaseline = 'top';
|
||||||
if (character === 'temmie') quote = this.client.registry.commands.get('temmie').temmize(quote);
|
|
||||||
const text = wrapText(ctx, quote, 385);
|
const text = wrapText(ctx, quote, 385);
|
||||||
const lines = text.length > 3 ? 3 : text.length;
|
const lines = text.length > 3 ? 3 : text.length;
|
||||||
for (let i = 0; i < lines; i++) {
|
for (let i = 0; i < lines; i++) {
|
||||||
ctx.fillText(text[i], 174, 27 + (27 * i) + (27 * i) + (space * i));
|
ctx.fillText(text[i], 174, 30 + (30 * i) + (23 * i) + (space * i));
|
||||||
}
|
}
|
||||||
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: `undertale-${character}.png` }] });
|
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: `undertale-${character}.png` }] });
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user