From 5a72da9ae99689a8a3571b23b7a639a4efc58abc Mon Sep 17 00:00:00 2001 From: tslil Date: Fri, 15 Jan 2021 23:45:16 -0500 Subject: Dragon is not separate, fixed concession, allowing playing as b/w --- include/ct1986.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ct1986.c') diff --git a/include/ct1986.c b/include/ct1986.c index 1c3fa79..c80e32a 100644 --- a/include/ct1986.c +++ b/include/ct1986.c @@ -133,11 +133,11 @@ static enum WIN_TYPE w; if (w < 0xFF) { \ /* Somebody won, assign weights accordingly */ \ if (min == 0) { \ - if (w == WIN_ROAD_BLACK || w == WIN_FLAT_BLACK || w == WIN_DRAGON) \ + if (w == WIN_ROAD_BLACK || w == WIN_FLAT_BLACK) \ val = infty; \ else val = -infty; \ } else { \ - if (w == WIN_ROAD_WHITE || w == WIN_FLAT_WHITE || w == WIN_DRAGON) \ + if (w == WIN_ROAD_WHITE || w == WIN_FLAT_WHITE) \ val = -infty; \ else val = infty; \ } \ -- cgit v1.3.1