diff options
author | Nathan Vance <nathav63@gmail.com> | 2015-04-02 13:10:41 -0400 |
---|---|---|
committer | Nathan Vance <nathav63@gmail.com> | 2015-04-02 13:10:41 -0400 |
commit | c9bec9ecc7dc8d0ccc8b0331b4cdf2bd8c77011f (patch) | |
tree | 3f8a1b0daf0e34b6e072d0f7e669fb5d3ba92b56 /trade.c | |
parent | Added more special actions (diff) | |
download | 7w-c9bec9ecc7dc8d0ccc8b0331b4cdf2bd8c77011f.tar.gz 7w-c9bec9ecc7dc8d0ccc8b0331b4cdf2bd8c77011f.tar.bz2 7w-c9bec9ecc7dc8d0ccc8b0331b4cdf2bd8c77011f.zip |
Halicarnassus bug fixes
Diffstat (limited to 'trade.c')
-rw-r--r-- | trade.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 } } } |