From 310d54db9cc665ee3a6d015ff7cfa23ebe9f4d83 Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Tue, 21 Apr 2015 15:12:21 -0400 Subject: Bug fixes --- data.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'data.c') diff --git a/data.c b/data.c index 29be94d..cc80dcd 100644 --- a/data.c +++ b/data.c @@ -86,7 +86,7 @@ void data_distributewonders() for(i = 0; i < numplayers; i++) { player[i][3][0] = wonders[i]; player[i][3][1] = rand()%2; - player[0][3][0] = 6; //delete these lines later + player[0][3][0] = 8; //delete these lines later player[0][3][1] = 1; //this one too! } } @@ -152,6 +152,9 @@ void data_endturn() data_flushbuffers(); } else data_discard((i+numplayers-turn)%numplayers, hands[i][0]); } + for(i = 0; i < numplayers; i++) { + special_action(i, data_getwonder(i), data_getwonderside(i)*3+data_getwonderstages(i)); + } data_nextera(); return; } -- cgit