From e97cb92979ffae83204cae0bf9a1d6ffc3fce770 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 23 Dec 2011 18:34:24 +0100 Subject: [PATCH] Example client: Use the conservative default values for attributes --- client/example.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/example.pl b/client/example.pl index d6df997..aacd0df 100755 --- a/client/example.pl +++ b/client/example.pl @@ -188,9 +188,10 @@ if ($ARGV[1]) { print "[ii] recovering agent $ARGV[1]\r\n"; print $socket "agent_id $ARGV[1]\r\n"; } else { + # Agent attributes - the default values: print $socket "move 1.0\r\n"; - print $socket "attack 1.0\r\n"; - print $socket "defense 1.0\r\n"; + print $socket "attack 0.5\r\n"; + print $socket "defense 0.5\r\n"; } print $socket "\r\n"; print "[ii] agent created\r\n";