From d84ba23794ad6b0356d69d43349c2609b04c3b74 Mon Sep 17 00:00:00 2001 From: Paolo Capriotti Date: Sat, 27 Jun 2009 19:43:59 +0200 Subject: [PATCH] Fix order of shogi players. --- lib/plugins/games/shogi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/games/shogi.rb b/lib/plugins/games/shogi.rb index 69d8bf8..d6163ae 100644 --- a/lib/plugins/games/shogi.rb +++ b/lib/plugins/games/shogi.rb @@ -33,7 +33,7 @@ class Game @animator = chess.animator @policy = Factory.new(Policy) { Policy.new(move, validator, true) } - @players = [:white, :black] + @players = [:black, :white] @types = [:pawn, :lance, :horse, :silver, :gold, :bishop, :rook, :king] -- 2.11.4.GIT