remove underscores in cheat fn name
This commit is contained in:
parent
998dd42b30
commit
028a94acf6
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ class Norecoil(Hack):
|
|||
# Control variable
|
||||
self.__old_punch = Vec()
|
||||
|
||||
def no_recoil(self) -> None:
|
||||
def norecoil(self) -> None:
|
||||
# Aliases
|
||||
mem = self.pm
|
||||
offset = self.offsets
|
||||
|
|
|
@ -5,7 +5,7 @@ class Radarhack(Hack):
|
|||
def __init__(self, **kwargs) -> None:
|
||||
super().__init__(**kwargs)
|
||||
|
||||
def radar_hack(self) -> None:
|
||||
def radarhack(self) -> None:
|
||||
# Aliases
|
||||
mem = self.pm
|
||||
offset = self.offsets
|
||||
|
|
Reference in a new issue