diff --git a/source/BackgroundDancer.hx b/source/BackgroundDancer.hx index a619dac..c572c1e 100644 --- a/source/BackgroundDancer.hx +++ b/source/BackgroundDancer.hx @@ -9,7 +9,7 @@ class BackgroundDancer extends FlxSprite { super(x, y); - frames = Paths.getSparrowAtlas("limo/limoDancer"); + frames = Paths.getSparrowAtlas("limo/limoDancer",'week4'); animation.addByIndices('danceLeft', 'bg dancer sketch PINK', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false); animation.addByIndices('danceRight', 'bg dancer sketch PINK', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false); animation.play('danceLeft'); diff --git a/source/BackgroundGirls.hx b/source/BackgroundGirls.hx index c37b16f..8a84699 100644 --- a/source/BackgroundGirls.hx +++ b/source/BackgroundGirls.hx @@ -10,7 +10,7 @@ class BackgroundGirls extends FlxSprite super(x, y); // BG fangirls dissuaded - frames = Paths.getSparrowAtlas('weeb/bgFreaks'); + frames = Paths.getSparrowAtlas('weeb/bgFreaks','week6'); animation.addByIndices('danceLeft', 'BG girls group', CoolUtil.numberArray(14), "", 24, false); animation.addByIndices('danceRight', 'BG girls group', CoolUtil.numberArray(30, 15), "", 24, false); diff --git a/source/PlayState.hx b/source/PlayState.hx index b0eb396..a5fe2e0 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3255,9 +3255,9 @@ class PlayState extends MusicBeatState function trainStart():Void { if(FlxG.save.data.distractions){ - trainMoving = true; - if (!trainSound.playing) - trainSound.play(true); + trainMoving = true; + if (!trainSound.playing) + trainSound.play(true); } }