diff --git a/assets/shared/images/stages/christmas/bgEscalator.png b/assets/shared/images/stages/christmas/bgEscalator.png
index f618ce2..cf0b0af 100644
Binary files a/assets/shared/images/stages/christmas/bgEscalator.png and b/assets/shared/images/stages/christmas/bgEscalator.png differ
diff --git a/assets/shared/images/stages/christmas/bgWalls.png b/assets/shared/images/stages/christmas/bgWalls.png
index 7eae4c9..624e23c 100644
Binary files a/assets/shared/images/stages/christmas/bgWalls.png and b/assets/shared/images/stages/christmas/bgWalls.png differ
diff --git a/assets/shared/images/stages/christmas/christmasWall.png b/assets/shared/images/stages/christmas/christmasWall.png
index 9ed8e44..294652b 100644
Binary files a/assets/shared/images/stages/christmas/christmasWall.png and b/assets/shared/images/stages/christmas/christmasWall.png differ
diff --git a/assets/shared/images/stages/christmas/upperBop.png b/assets/shared/images/stages/christmas/upperBop.png
index c784d85..27ef45b 100644
Binary files a/assets/shared/images/stages/christmas/upperBop.png and b/assets/shared/images/stages/christmas/upperBop.png differ
diff --git a/assets/shared/images/stages/christmas/upperBop.xml b/assets/shared/images/stages/christmas/upperBop.xml
index 9e767d6..b4e1533 100644
--- a/assets/shared/images/stages/christmas/upperBop.xml
+++ b/assets/shared/images/stages/christmas/upperBop.xml
@@ -3,16 +3,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/source/SaveManagement.hx b/source/SaveManagement.hx
index 6091e78..0f997cd 100644
--- a/source/SaveManagement.hx
+++ b/source/SaveManagement.hx
@@ -62,6 +62,8 @@ class SaveManagement {
}
public static function getOption(option:String):Dynamic {
- return FlxG.save.data.options.get(option);
+ if (FlxG.save.data.options.get(option) != null)
+ return FlxG.save.data.options.get(option);
+ return null;
}
}
\ No newline at end of file