mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-06-19 16:52:03 +00:00
oopy forgot the comment
This commit is contained in:
parent
8bd876ed1c
commit
02255a61d9
|
@ -264,8 +264,7 @@ class Stage extends FlxSpriteGroup implements IHook implements IPlayStateScripte
|
||||||
this.characters.set("bf", character);
|
this.characters.set("bf", character);
|
||||||
charData = _data.characters.bf;
|
charData = _data.characters.bf;
|
||||||
character.flipX = !character.flipX;
|
character.flipX = !character.flipX;
|
||||||
if (character.flipX)
|
// flip offsets if flipX
|
||||||
character.flipAnimationOffsets();
|
|
||||||
character.initHealthIcon(false);
|
character.initHealthIcon(false);
|
||||||
case GF:
|
case GF:
|
||||||
this.characters.set("gf", character);
|
this.characters.set("gf", character);
|
||||||
|
@ -273,8 +272,7 @@ class Stage extends FlxSpriteGroup implements IHook implements IPlayStateScripte
|
||||||
case DAD:
|
case DAD:
|
||||||
this.characters.set("dad", character);
|
this.characters.set("dad", character);
|
||||||
charData = _data.characters.dad;
|
charData = _data.characters.dad;
|
||||||
if (character.flipX)
|
// flip offsets if flipX
|
||||||
character.flipAnimationOffsets();
|
|
||||||
character.initHealthIcon(true);
|
character.initHealthIcon(true);
|
||||||
default:
|
default:
|
||||||
this.characters.set(character.characterId, character);
|
this.characters.set(character.characterId, character);
|
||||||
|
|
Loading…
Reference in a new issue