diff --git a/commands/edit-avatar/eject.js b/commands/edit-avatar/eject.js index 902cc03f..4c6ef2e2 100644 --- a/commands/edit-avatar/eject.js +++ b/commands/edit-avatar/eject.js @@ -75,7 +75,7 @@ module.exports = class EjectCommand extends Command { encoder.start(); encoder.setRepeat(0); encoder.setDelay(100); - encoder.setQuality(200); + encoder.setQuality(10); for (let i = 0; i < frameCount; i++) { const frameID = `frame_${i.toString().padStart(2, '0')}.gif`; const frame = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'eject', frameID)); diff --git a/commands/edit-avatar/triggered.js b/commands/edit-avatar/triggered.js index e6fad69e..b98e27e8 100644 --- a/commands/edit-avatar/triggered.js +++ b/commands/edit-avatar/triggered.js @@ -55,7 +55,7 @@ module.exports = class TriggeredCommand extends Command { encoder.start(); encoder.setRepeat(0); encoder.setDelay(50); - encoder.setQuality(200); + encoder.setQuality(10); for (let i = 0; i < 4; i++) { drawImageWithTint(ctx, avatar, 'red', coord1[i], coord2[i], 300, 300); ctx.drawImage(base, 0, 218, 256, 38); diff --git a/commands/edit-image/pet.js b/commands/edit-image/pet.js index 48373d7a..1ec756a8 100644 --- a/commands/edit-image/pet.js +++ b/commands/edit-image/pet.js @@ -40,7 +40,7 @@ module.exports = class PetCommand extends Command { encoder.start(); encoder.setRepeat(0); encoder.setDelay(20); - encoder.setQuality(200); + encoder.setQuality(10); encoder.setTransparent('#000000'); let squish = 0; for (let i = 0; i < frameCount; i++) { diff --git a/commands/edit-image/shake.js b/commands/edit-image/shake.js index 62ffce73..8d636af5 100644 --- a/commands/edit-image/shake.js +++ b/commands/edit-image/shake.js @@ -46,7 +46,7 @@ module.exports = class ShakeCommand extends Command { encoder.start(); encoder.setRepeat(0); encoder.setDelay(20); - encoder.setQuality(200); + encoder.setQuality(10); const frames = this.generateFrames(amount); for (const { x, y } of frames) { ctx.clearRect(0, 0, canvas.width, canvas.height);