Skip to content

Commit

Permalink
Merge pull request #4 from CharlyCast/bugfix/should_be_stored
Browse files Browse the repository at this point in the history
Fix undefined method "Move.should_be_stored"
  • Loading branch information
hsahovic committed Nov 15, 2019
2 parents 920fccf + 3a30819 commit a8211ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poke_env/environment/pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _moved(self, move):

id_ = Move.retrieve_id(move)

if Move.should_be_stored(id_):
if Move._should_be_stored(id_):
if id_ not in self._moves:
self._moves[id_] = Move(id_)

Expand Down

0 comments on commit a8211ae

Please sign in to comment.