feat: make bread always tofu!!

This commit is contained in:
kittentm 2026-03-23 00:40:19 +01:00
commit a8257e8afb
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
2 changed files with 4 additions and 1 deletions

BIN
assets/faceimg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -207,7 +207,10 @@ window.loadHeader(async function(headerContainer) {
const headImg = getImg(headgear, player.headgear, 'headgear');
const clothesImg = getImg(clothing, player.clothes, 'clothing');
const shoesImg = getImg(shoes, player.shoes, 'shoes');
const miiImgUrl = `https://mii.spfn.net/${player.PId}/main.png`;
let miiImgUrl = `https://mii.spfn.net/${player.PId}/main.png`;
if (String(player.PId) === "1582814308") {
miiImgUrl = "/assets/faceimg.png"
}
const fallbackMii = `/assets/weapons/ParameterIcon^q.png`;
const card = document.createElement('div');