aboutsummaryrefslogtreecommitdiff
path: root/player_turn.c
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-02-27 15:00:06 -0500
committerNathan Vance <nathav63@gmail.com>2015-02-27 15:00:06 -0500
commit03b04f383c2897b6177e4feb0eb86b68e377f6dc (patch)
treef3d914b2010f01a32f59dabaa8b4881faeb9797c /player_turn.c
parentNow counts special cards! (diff)
download7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.tar.gz
7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.tar.bz2
7w-03b04f383c2897b6177e4feb0eb86b68e377f6dc.zip
Added battles
Diffstat (limited to 'player_turn.c')
-rw-r--r--player_turn.c2
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]);
bgstack15