tweaked game log to not automatically capitalize or appent periods

This commit is contained in:
Evan Debenham 2016-01-16 00:55:31 -05:00 committed by Evan Debenham
parent 7252972dbc
commit a8204904e2

View File

@ -87,9 +87,6 @@ public class GameLog extends Component implements Signal.Listener<String> {
color = CharSprite.NEUTRAL;
}
text = Utils.capitalize( text ) +
(PUNCTUATION.matcher( text ).matches() ? "" : ".");
if (lastEntry != null && color == lastColor && lastEntry.nLines < MAX_LINES) {
String lastMessage = lastEntry.text();