diff --git a/cheats/fov.py b/cheats/fov.py index 4ffc7b2..059e74c 100644 --- a/cheats/fov.py +++ b/cheats/fov.py @@ -34,11 +34,11 @@ class Fov(Hack): self.__fov = 90 # Increase FOV - elif GetAsyncKeyState(self.vmap["PAGE_UP"]) and self.__fov < 130: + elif GetAsyncKeyState(self.vmap["PAGE_DOWN"]) and self.__fov < 130: self.__fov += self.__factor # Decrease FOV - elif GetAsyncKeyState(self.vmap["PAGE_DOWN"]) and self.__fov > 50: + elif GetAsyncKeyState(self.vmap["PAGE_UP"]) and self.__fov > 50: self.__fov -= self.__factor # If modified