changeset 4:1a5e50fbba08

Changed the default ordering of players.
author Mikhail Kryshen <mikhail@kryshen.net>
date Thu, 18 Feb 2016 01:32:24 +0300
parents 9ee21f993e05
children c02b5a225a10
files src/Serpentron.st
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/src/Serpentron.st	Thu Feb 18 01:28:43 2016 +0300
     1.2 +++ b/src/Serpentron.st	Thu Feb 18 01:32:24 2016 +0300
     1.3 @@ -10,7 +10,7 @@
     1.4  
     1.5  initialize
     1.6  	super initialize.
     1.7 -	playerColors := #('#377eb8' '#e41a1c' '#4daf4a' '#ff7f00' '#984ea3' '#b3ad78').
     1.8 +	playerColors := #('#e41a1c' '#377eb8' '#4daf4a' '#ff7f00' '#984ea3' '#b3ad78').
     1.9  	startScreenVisible := true.
    1.10  	skin := TronSkin new.
    1.11  	field := TronField new
    1.12 @@ -81,8 +81,8 @@
    1.13  		TronComputerController1 new.
    1.14  		"TronRandomController new"
    1.15  	}.
    1.16 -	(players at: 1) controller: (controllerPrototypes at: 1) copy.
    1.17 -	(players at: 2) controller: (controllerPrototypes at: 5) copy.
    1.18 +	(players at: 1) controller: (controllerPrototypes at: 5) copy.
    1.19 +	(players at: 2) controller: (controllerPrototypes at: 1) copy.
    1.20  	(players at: 3) controller: (controllerPrototypes at: 5) copy.
    1.21  	(players at: 4) controller: (controllerPrototypes at: 5) copy.
    1.22  !