mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
make 2nd player robot by default (previously committed)
This commit is contained in:
parent
da2cfa5934
commit
7f7af21ff4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ public class LocalPlayer {
|
||||||
public LocalPlayer( int num )
|
public LocalPlayer( int num )
|
||||||
{
|
{
|
||||||
isLocal = true;
|
isLocal = true;
|
||||||
isRobot = false;
|
isRobot = num == 1; // 2nd player is a robot by default
|
||||||
// This should be a template in strings.xml
|
// This should be a template in strings.xml
|
||||||
name = "Player " + (num + 1);
|
name = "Player " + (num + 1);
|
||||||
password = "";
|
password = "";
|
||||||
|
|
Loading…
Reference in a new issue