Skip to content

Commit

Permalink
fix explore map
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Jun 23, 2024
1 parent 87ae90b commit 4d4ea62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemonred_puffer/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ def disable_wild_encounter_hook(self, *args, **kwargs):
def agent_stats(self, action):
levels = [self.read_m(f"wPartyMon{i+1}Level") for i in range(self.read_m("wPartyCount"))]
badges = self.read_m("wObtainedBadges")
explore_map = self.explore_map[self.explore_map]
explore_map = self.explore_map
explore_map[explore_map > 0] = 1
return {
"stats": {
Expand Down

0 comments on commit 4d4ea62

Please sign in to comment.