From a8204904e222e58877bd43fc9acc7c67de5fb115 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 16 Jan 2016 00:55:31 -0500 Subject: [PATCH] tweaked game log to not automatically capitalize or appent periods --- src/com/shatteredpixel/shatteredpixeldungeon/ui/GameLog.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/ui/GameLog.java b/src/com/shatteredpixel/shatteredpixeldungeon/ui/GameLog.java index bf763c390..709aeda0a 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/ui/GameLog.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/ui/GameLog.java @@ -87,9 +87,6 @@ public class GameLog extends Component implements Signal.Listener { color = CharSprite.NEUTRAL; } - text = Utils.capitalize( text ) + - (PUNCTUATION.matcher( text ).matches() ? "" : "."); - if (lastEntry != null && color == lastColor && lastEntry.nLines < MAX_LINES) { String lastMessage = lastEntry.text();