From 0c892f4b32921e1fe40a76917fbb5d0736222b1a Mon Sep 17 00:00:00 2001
From: Cameron Taylor <cameron.taylor.ninja@gmail.com>
Date: Tue, 19 Jan 2021 23:29:18 -0500
Subject: [PATCH] santa lol

---
 source/PlayState.hx | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/source/PlayState.hx b/source/PlayState.hx
index 21e9ef60c..e56c7fc22 100644
--- a/source/PlayState.hx
+++ b/source/PlayState.hx
@@ -95,6 +95,7 @@ class PlayState extends MusicBeatState
 
 	var upperBoppers:FlxSprite;
 	var bottomBoppers:FlxSprite;
+	var santa:FlxSprite;
 
 	var talking:Bool = true;
 	var songScore:Int = 0;
@@ -299,6 +300,12 @@ class PlayState extends MusicBeatState
 			fgSnow.active = false;
 			fgSnow.antialiasing = true;
 			add(fgSnow);
+
+			santa = new FlxSprite(-840, 150);
+			santa.frames = FlxAtlasFrames.fromSparrow('assets/images/christmas/santa.png', 'assets/images/christmas/santa.xml');
+			santa.animation.addByPrefix('idle', 'santa idle in fear', 24, false);
+			santa.antialiasing = true;
+			add(santa);
 		}
 		else
 		{
@@ -1782,6 +1789,7 @@ class PlayState extends MusicBeatState
 			case 'mall':
 				upperBoppers.animation.play('bop', true);
 				bottomBoppers.animation.play('bop', true);
+				santa.animation.play('idle', true);
 
 			case 'limo':
 				grpLimoDancers.forEach(function(dancer:BackgroundDancer)