diff --git a/js/utils.umd.js b/js/utils.umd.js index 75c14da..4e1354f 100644 --- a/js/utils.umd.js +++ b/js/utils.umd.js @@ -624,11 +624,11 @@ world.beforeEvents.chatSend.subscribe((event) => { */ async addIcon() { try { - const imageUrl = `./pack_icon.jpg`; + const imageUrl = `./pack_icon.png`; const response = await fetch(imageUrl); if (response.ok) { const blob = await response.blob(); - this.zip.file("pack_icon.jpg", blob); + this.zip.file("pack_icon.png", blob); } } catch (error) { console.warn(i18n[currentLang].ERROR_IMAGE_FETCH, error); diff --git a/pack_icon.png b/pack_icon.png new file mode 100644 index 0000000..d765ac5 Binary files /dev/null and b/pack_icon.png differ