From 35687ace49ce0b41b1380603513d1f04cd6b458f Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Fri, 29 Jun 2007 19:18:51 +0200 Subject: NEW FEATURE+BUGFIX: changed calling re/contra you can call re/contra, etc. now even if it is not your turn. Also fixed rule where you can say 90 with 9 cards, etc. so that you need to say 120 to say 90, 90 to say 60, etc. --- output.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'output.php') diff --git a/output.php b/output.php index 9919a97..89aedff 100644 --- a/output.php +++ b/output.php @@ -240,6 +240,28 @@ function output_check_for_sickness($me,$mycards) return; } +function output_form_calls($me) +{ + if( can_call(120,$me) ) + echo " re/contra (120):". + "
"; + if( can_call(90,$me) ) + echo " 90:". + "
"; + if( can_call(60,$me) ) + echo " 60:". + " "; + if( can_call(30,$me) ) + echo " 30:". + " "; + if( can_call(0,$me) ) + echo " 0:". + " ". + " no call:". + " "; +} + + function output_check_want_to_play($me) { ?> -- cgit v1.2.3-18-g5258