diff options
Diffstat (limited to 'special_actions.c')
-rw-r--r-- | special_actions.c | 6 |
1 files changed, 6 insertions, 0 deletions
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); + } + } } |