Make first player a robot rather than second. This might make a

better first impression on new users.
This commit is contained in:
eehouse 2010-05-12 11:49:38 +00:00
parent 1e560bfd42
commit 7daa6e33f7

View file

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