Commit fe899441 authored by Matthew Hausknecht's avatar Matthew Hausknecht Committed by GitHub

Merge pull request #55 from DurgeshSamant/master

Minor fix to python communication agent
parents 5fd31bbc acd6f3ca
......@@ -28,7 +28,11 @@ def main():
# Take an action
hfo.act(DASH, 20.0, 0.)
# Create outgoing communication
hfo.say('Hello!')
# the message can contain charachters a-z A-Z 0-9
# the message can contain special charachters like ?SPACE-*()+_<>/
# the message cannot contain !@#$^&={}[];:"'
hfo.say('Hello World')
# Advance the environment and get the game status
status = hfo.step()
# Check the outcome of the episode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment