diff --git a/ApplesBorderlandsCheats/ApplesBorderlandsCheats.zip b/ApplesBorderlandsCheats/ApplesBorderlandsCheats.zip index 7131467..3e9e23f 100644 Binary files a/ApplesBorderlandsCheats/ApplesBorderlandsCheats.zip and b/ApplesBorderlandsCheats/ApplesBorderlandsCheats.zip differ diff --git a/ApplesBorderlandsCheats/Cheats/InstantKill.py b/ApplesBorderlandsCheats/Cheats/InstantKill.py index c59c108..f60cadc 100644 --- a/ApplesBorderlandsCheats/Cheats/InstantKill.py +++ b/ApplesBorderlandsCheats/Cheats/InstantKill.py @@ -11,6 +11,7 @@ class OneShot(ABCToggleableCheat): KeybindName = "Toggle One Shot Mode" def __init__(self) -> None: + super().__init__() self.CheatOptions = [Options.Hidden("Disable One Shot Mode in TPS", StartingValue=False)] def GetHooks(self) -> Dict[str, SDKHook]: diff --git a/ApplesBorderlandsCheats/Readme.md b/ApplesBorderlandsCheats/Readme.md index d1e27ad..4b621ca 100644 --- a/ApplesBorderlandsCheats/Readme.md +++ b/ApplesBorderlandsCheats/Readme.md @@ -1,5 +1,8 @@ ## Changelog +### Apple's Borderlands Cheats v1.13 +Fixed `One Shot Mode` not getting loaded properly. + ### Apple's Borderlands Cheats v1.12 Fixed `Infinite Ammo` not applying to offhand weapons. diff --git a/ApplesBorderlandsCheats/__init__.py b/ApplesBorderlandsCheats/__init__.py index 94c1e57..905f833 100644 --- a/ApplesBorderlandsCheats/__init__.py +++ b/ApplesBorderlandsCheats/__init__.py @@ -44,7 +44,7 @@ class ApplesBorderlandsCheats(SDKMod): Description: str = ( "Adds keybinds performing various cheaty things" ) - Version: str = "1.12" + Version: str = "1.13" Types: ModTypes = ModTypes.Utility SaveEnabledState: EnabledSaveType = EnabledSaveType.LoadWithSettings