put space between "Player 1" and "(robot)"

This commit is contained in:
Andy2 2010-08-31 06:20:29 -07:00
parent 9367251b33
commit 4d1d7ae7ce

View file

@ -213,7 +213,7 @@ public class CurGameInfo {
if ( lp.isLocal || serverRole == DeviceRole.SERVER_STANDALONE ) { if ( lp.isLocal || serverRole == DeviceRole.SERVER_STANDALONE ) {
names[ii] = lp.name; names[ii] = lp.name;
if ( lp.isRobot ) { if ( lp.isRobot ) {
names[ii] += context.getString( R.string.robot_name ); names[ii] += " " + context.getString( R.string.robot_name );
} }
} else { } else {
names[ii] = context.getString( R.string.guest_name ); names[ii] = context.getString( R.string.guest_name );