From 03b04f383c2897b6177e4feb0eb86b68e377f6dc Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Fri, 27 Feb 2015 15:00:06 -0500 Subject: Added battles --- player_turn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player_turn.c') 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]); -- cgit