aboutsummaryrefslogtreecommitdiff
path: root/player_turn.c
diff options
context:
space:
mode:
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