Fixed stupid bug
authorHarvie <tomas@mudrunka.cz>
Tue, 17 Jan 2012 08:00:49 +0000 (09:00 +0100)
committerHarvie <tomas@mudrunka.cz>
Tue, 17 Jan 2012 08:00:49 +0000 (09:00 +0100)
purple/answerscripts.d/00-megahal.sh

index 800210df9c4d304c825a249ca766cc57fd13f40c..825fbba429ef2d32aa9955f63a573377dce904c7 100755 (executable)
@@ -6,10 +6,10 @@ AI_LOUD=false #enable loud replies (otherwise will be learning only :-)
 AI_LOUD_UNAVAILABLE=true; #enable loud replies when not available :-)
 AI_REMEMBER=true; #set false if you don't want MegaHAL to learn new phrases (this can prevent data corruption)
 
 AI_LOUD_UNAVAILABLE=true; #enable loud replies when not available :-)
 AI_REMEMBER=true; #set false if you don't want MegaHAL to learn new phrases (this can prevent data corruption)
 
+$AI_LOUD_UNAVAILABLE && [ "$ANSW_L_STATUS" != 'available' ] && AI_LOUD=true
 $AI_LOUD || $AI_REMEMBER || exit 23; #No speaking + No learning = Exitus
 
 AI_CMD_QUIT='#EXIT'
 $AI_REMEMBER && AI_CMD_QUIT='#QUIT'
 $AI_LOUD || $AI_REMEMBER || exit 23; #No speaking + No learning = Exitus
 
 AI_CMD_QUIT='#EXIT'
 $AI_REMEMBER && AI_CMD_QUIT='#QUIT'
-$AI_LOUD_UNAVAILABLE && [ "$ANSW_L_STATUS" != 'available' ] && AI_LOUD=true
 AI_ANSW="$({ echo "$ANSW_MSG." | sed -e 's/#//g' && echo -e "\n$AI_CMD_QUIT\n"; } | timeout 23 megahal -p -b -w | tail -n1)"
 $AI_LOUD && [ -n "$AI_ANSW" ] && echo -n "[MegaHALuz]: $AI_ANSW"
 AI_ANSW="$({ echo "$ANSW_MSG." | sed -e 's/#//g' && echo -e "\n$AI_CMD_QUIT\n"; } | timeout 23 megahal -p -b -w | tail -n1)"
 $AI_LOUD && [ -n "$AI_ANSW" ] && echo -n "[MegaHALuz]: $AI_ANSW"
This page took 0.115779 seconds and 4 git commands to generate.