Hi,

of course you are right, I will take care of fixing this.

The best place for bug reports to anything distributed with GNU Go is either
http://trac.gnugo.org/ or the GNU Go mailing list
(gnugo-devel-at-gnu-dot-org).

Arend

On 1/18/07, Peter Drake <[EMAIL PROTECTED]> wrote:

The problem is in the play() method of the GTP_game class. When it's
black's turn, we see this:

                    self.moves.append(move)
                    if string.lower(move[:4]) == "pass":
                        passes = passes + 1
                        if verbose >= 1:
                            print "White passes"
                    else:
                        passes = 0
                        self.whiteplayer.black(move)
                        if verbose >= 1:
                            print "Black plays " + move

Shouldn't that be "Black passes" instead of "White passes"?

_______________________________________________
computer-go mailing list
computer-go@computer-go.org
http://www.computer-go.org/mailman/listinfo/computer-go/

Reply via email to