Commit ea88b0ed by Werner Duvaud

Add multiplayer mode

parent 98ae7ff0
......@@ -96,7 +96,7 @@ class Game:
The new observation, the reward and a boolean if the game has ended.
"""
observation, reward, done, _ = self.env.step(action)
return numpy.array(observation).flatten(), reward/100, done
return numpy.array(observation).flatten(), reward, done
def to_play(self):
"""
......
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