diff --git a/client/src/builtin/EmoteModule.js b/client/src/builtin/EmoteModule.js index fe44a897..efd89aef 100644 --- a/client/src/builtin/EmoteModule.js +++ b/client/src/builtin/EmoteModule.js @@ -160,7 +160,7 @@ export default new class EmoteModule extends BuiltinModule { const arr = new Uint8Array(new ArrayBuffer(res.length)); for (let i = 0; i < res.length; i++) arr[i] = res.charCodeAt(i); const suffix = arr[0] === 71 && arr[1] === 73 && arr[2] === 70 ? '.gif' : '.png'; - Uploader.upload(args[0], FileActions.makeFile(arr, `${emote.name}${suffix}`)); + Uploader.upload(args[0], FileActions.makeFile(arr, `${emote.name}.bdemote${suffix}`)); }); }