From 84a9208b7f7713d9c94b23d60757051ffde586a4 Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Mon, 30 Mar 2015 21:16:17 -0400 Subject: Added more special actions --- special_actions.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'special_actions.c') diff --git a/special_actions.c b/special_actions.c index 5b6e0ed..fa8d013 100644 --- a/special_actions.c +++ b/special_actions.c @@ -12,6 +12,7 @@ void io_printborder(int x, int y, int width); int io_getkey(); void posthelp(); int data_isai(int p); +void data_setfreebuild(int p); void Halicarnassus(int player) { @@ -85,4 +86,9 @@ void special_action(int player, int wonder, int stage) } } } + if(wonder == 7) { //Olympia + if(stage == 2) { + data_setfreebuild(player); + } + } } -- cgit