diff options
author | Nathan Vance <nathav63@gmail.com> | 2015-02-27 15:00:06 -0500 |
---|---|---|
committer | Nathan Vance <nathav63@gmail.com> | 2015-02-27 15:00:06 -0500 |
commit | 03b04f383c2897b6177e4feb0eb86b68e377f6dc (patch) | |
tree | f3d914b2010f01a32f59dabaa8b4881faeb9797c /player_turn.c | |
parent | Now counts special cards! (diff) | |
download | 7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.tar.gz 7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.tar.bz2 7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.zip |
Added battles
Diffstat (limited to 'player_turn.c')
-rw-r--r-- | player_turn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/player_turn.c b/player_turn.c index 3f84465..1759c5f 100644 --- a/player_turn.c +++ b/player_turn.c @@ -26,7 +26,7 @@ int player_build(int focus, int cursor, int player) int *hand = data_gethand(player); if(focus == data_numplayers()) { if(hand[cursor] == -1) return 0; - int choice = postoptions(65, 20); + int choice = postoptions(62, 20); if(choice == 0) { if(data_canafford(player, cards_getcost(data_getera(), hand[cursor]))) { data_build(player, hand[cursor]); |