Skip to content

Commit

Permalink
Fix One Shot Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin99x committed May 4, 2024
1 parent b5988c0 commit d73fb2c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Binary file modified ApplesBorderlandsCheats/ApplesBorderlandsCheats.zip
Binary file not shown.
1 change: 1 addition & 0 deletions ApplesBorderlandsCheats/Cheats/InstantKill.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down
3 changes: 3 additions & 0 deletions ApplesBorderlandsCheats/Readme.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion ApplesBorderlandsCheats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d73fb2c

Please sign in to comment.