Merge pull request #161 from CyndaquilDAC/character-health-icon-crashes-fix

Fixes two issues with health icons: Parents christmas losing icon is actually called for modding support, and the missing gfs from the list have been added to fix crashing
This commit is contained in:
Kade M 2021-04-06 17:28:56 -07:00 committed by GitHub
commit 35ea27ffce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,9 @@ class HealthIcon extends FlxSprite
animation.add('spirit', [23, 23], 0, false, isPlayer); animation.add('spirit', [23, 23], 0, false, isPlayer);
animation.add('bf-old', [14, 15], 0, false, isPlayer); animation.add('bf-old', [14, 15], 0, false, isPlayer);
animation.add('gf', [16], 0, false, isPlayer); animation.add('gf', [16], 0, false, isPlayer);
animation.add('parents-christmas', [17], 0, false, isPlayer); animation.add('gf-christmas', [16], 0, false, isPlayer);
animation.add('gf-pixel', [16], 0, false, isPlayer);
animation.add('parents-christmas', [17, 18], 0, false, isPlayer);
animation.add('monster', [19, 20], 0, false, isPlayer); animation.add('monster', [19, 20], 0, false, isPlayer);
animation.add('monster-christmas', [19, 20], 0, false, isPlayer); animation.add('monster-christmas', [19, 20], 0, false, isPlayer);
animation.play(char); animation.play(char);