mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-04-10 22:34:17 +00:00
Fix to Spooky icon in Freeplay menu
This commit is contained in:
parent
382af3b485
commit
b0f04779dc
|
@ -305,6 +305,8 @@ class CharacterDataParser
|
||||||
icon = "darnell";
|
icon = "darnell";
|
||||||
case "senpai-angry":
|
case "senpai-angry":
|
||||||
icon = "senpai";
|
icon = "senpai";
|
||||||
|
case "spooky-dark":
|
||||||
|
icon = "spooky";
|
||||||
case "tankman-atlas":
|
case "tankman-atlas":
|
||||||
icon = "tankman";
|
icon = "tankman";
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,14 +22,26 @@ class PixelatedIcon extends FlxSprite
|
||||||
|
|
||||||
switch (char)
|
switch (char)
|
||||||
{
|
{
|
||||||
case 'monster-christmas':
|
case "bf-christmas" | "bf-car" | "bf-pixel" | "bf-holding-gf":
|
||||||
charPath += 'monsterpixel';
|
charPath += "bfpixel";
|
||||||
case 'mom-car':
|
case "monster-christmas":
|
||||||
charPath += 'mommypixel';
|
charPath += "monsterpixel";
|
||||||
case 'darnell-blazin':
|
case "mom" | "mom-car":
|
||||||
charPath += 'darnellpixel';
|
charPath += "mommypixel";
|
||||||
case 'senpai-angry':
|
case "pico-blazin" | "pico-playable" | "pico-speaker":
|
||||||
charPath += 'senpaipixel';
|
charPath += "picopixel";
|
||||||
|
case "gf-christmas" | "gf-car" | "gf-pixel" | "gf-tankmen":
|
||||||
|
charPath += "gfpixel";
|
||||||
|
case "dad":
|
||||||
|
charPath += "dadpixel";
|
||||||
|
case "darnell-blazin":
|
||||||
|
charPath += "darnellpixel";
|
||||||
|
case "senpai-angry":
|
||||||
|
charPath += "senpaipixel";
|
||||||
|
case "spooky-dark":
|
||||||
|
charPath += "spookypixel";
|
||||||
|
case "tankman-atlas":
|
||||||
|
charPath += "tankmanpixel";
|
||||||
default:
|
default:
|
||||||
charPath += '${char}pixel';
|
charPath += '${char}pixel';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue