From b7193498110032b2f1413589e9f44b6f0eb300ed Mon Sep 17 00:00:00 2001 From: thatguy11325 <148832074+thatguy11325@users.noreply.github.com> Date: Mon, 3 Jun 2024 00:00:15 -0400 Subject: [PATCH] Bah remember to uncomment send input again --- pokemonred_puffer/environment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pokemonred_puffer/environment.py b/pokemonred_puffer/environment.py index 31138a0..83e39c8 100644 --- a/pokemonred_puffer/environment.py +++ b/pokemonred_puffer/environment.py @@ -613,8 +613,8 @@ def run_action_on_emulator(self, action): self.action_hist[action] += 1 # press button then release after some steps # TODO: Add video saving logic - # self.pyboy.send_input(VALID_ACTIONS[action]) - # self.pyboy.send_input(VALID_RELEASE_ACTIONS[action], delay=8) + self.pyboy.send_input(VALID_ACTIONS[action]) + self.pyboy.send_input(VALID_RELEASE_ACTIONS[action], delay=8) self.pyboy.tick(self.action_freq, render=True) if self.read_bit(0xD803, 0):