From e6b8732f90a34146c7dd09b16e95c67563e36175 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 12 Oct 2014 19:27:34 -0400 Subject: [PATCH] V0.2.1 : reintroduced welcome string error (I can't bring myself to remove it) --- .../shatteredpixeldungeon/scenes/GameScene.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index fc50b343e..ed5a660f3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -70,8 +70,8 @@ import com.watabou.utils.Random; public class GameScene extends PixelScene { - private static final String TXT_WELCOME = "Welcome to level %d of Pixel Dungeon!"; - private static final String TXT_WELCOME_BACK = "Welcome back to level %d of Pixel Dungeon!"; + private static final String TXT_WELCOME = "Welcome to the level %d of Pixel Dungeon!"; + private static final String TXT_WELCOME_BACK = "Welcome back to the level %d of Pixel Dungeon!"; private static final String TXT_NIGHT_MODE = "Be cautious, since the dungeon is even more dangerous at night!"; private static final String TXT_CHASM = "Your steps echo across the dungeon.";