From be563be012088f75559b7d2e09bdb4ca9418b8fc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 21 Feb 2015 23:45:56 -0500 Subject: [PATCH] v0.2.4: added proper effects to last shop level --- .../shatteredpixeldungeon/levels/LastShopLevel.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/LastShopLevel.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/LastShopLevel.java index 5e5f87a48..765de4d2d 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/LastShopLevel.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/LastShopLevel.java @@ -223,6 +223,7 @@ public class LastShopLevel extends RegularLevel { @Override public void addVisuals( Scene scene ) { + super.addVisuals( scene ); CityLevel.addVisuals( this, scene ); } }