make 2nd player robot by default (previously committed)

This commit is contained in:
eehouse 2010-04-15 02:16:06 +00:00
parent da2cfa5934
commit 7f7af21ff4

View file

@ -30,7 +30,7 @@ public class LocalPlayer {
public LocalPlayer( int num )
{
isLocal = true;
isRobot = false;
isRobot = num == 1; // 2nd player is a robot by default
// This should be a template in strings.xml
name = "Player " + (num + 1);
password = "";