From 624ef92257cf0512856552f09080c68fdae1f6ee Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 17 Nov 2010 16:07:23 +0100 Subject: [PATCH] Account for Elephant and Hawk in Seirawan game stage The holdings pieces were not counted when initializing R. --- fairymax.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fairymax.c b/fairymax.c index 85783a1..072e67f 100644 --- a/fairymax.c +++ b/fairymax.c @@ -784,7 +784,7 @@ int main(int argc, char **argv) sscanf(line, "variant %s", command); LoadGame(command); InitGame(); Setup = 0; - if(strstr(command,"seirawan")) pl[13] = pl[15] = pl[29] = pl[31] = 1; + if(strstr(command,"seirawan")) pl[13] = pl[15] = pl[29] = pl[31] = 1, R += 2*(w[6]/FAC + w[8]/FAC); continue; } if (!strcmp(command, "edit")) { -- 1.7.0.4