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 wrap: on
line diff
--- a/src/Serpentron.st	Thu Feb 18 01:28:43 2016 +0300
+++ b/src/Serpentron.st	Thu Feb 18 01:32:24 2016 +0300
@@ -10,7 +10,7 @@
 
 initialize
 	super initialize.
-	playerColors := #('#377eb8' '#e41a1c' '#4daf4a' '#ff7f00' '#984ea3' '#b3ad78').
+	playerColors := #('#e41a1c' '#377eb8' '#4daf4a' '#ff7f00' '#984ea3' '#b3ad78').
 	startScreenVisible := true.
 	skin := TronSkin new.
 	field := TronField new
@@ -81,8 +81,8 @@
 		TronComputerController1 new.
 		"TronRandomController new"
 	}.
-	(players at: 1) controller: (controllerPrototypes at: 1) copy.
-	(players at: 2) controller: (controllerPrototypes at: 5) copy.
+	(players at: 1) controller: (controllerPrototypes at: 5) copy.
+	(players at: 2) controller: (controllerPrototypes at: 1) copy.
 	(players at: 3) controller: (controllerPrototypes at: 5) copy.
 	(players at: 4) controller: (controllerPrototypes at: 5) copy.
 !