Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!rutgers!ames!ucbcad!ucbvax!ucsfcgl!pixar!dulman From: dulman@pixar.UUCP Newsgroups: net.sources.games Subject: othello bug fix Message-ID: <501@pixar.UUCP> Date: Sun, 25-Jan-87 02:31:32 EST Article-I.D.: pixar.501 Posted: Sun Jan 25 02:31:32 1987 Date-Received: Sun, 25-Jan-87 14:43:21 EST Organization: Pixar -- Marin County, California Lines: 16 Keywords: othello I noticed that the version of othello that was posted ended the game when one of two players would be forced to pass, which should be done only when both players are forced to pass. To fix, just change line 372 in othello.c as follows: was 372 if (xpass || opass) break; should be 372 if (xpass && opass) break; ------------------------------------------------------------------------- ucbvax!pixar!dulman