From c9bec9ecc7dc8d0ccc8b0331b4cdf2bd8c77011f Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Thu, 2 Apr 2015 13:10:41 -0400 Subject: Halicarnassus bug fixes --- trade.c | 1 + 1 file changed, 1 insertion(+) (limited to 'trade.c') diff --git a/trade.c b/trade.c index 8c7cb98..d78fe4f 100644 --- a/trade.c +++ b/trade.c @@ -58,6 +58,7 @@ void trade_set(int player, int trade[3][GOLD]) for(i = 0; i < 3; i++) { for(j = 0; j < GOLD; j++) { tradebuffer[i][j] = trade[i][j]; + tradebuffer[i][GOLD] = 0; //we deal with gold in the method that calls this } } } -- cgit