aboutsummaryrefslogtreecommitdiff
path: root/srb.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-03-20 13:05:01 -0400
committerB. Stack <bgstack15@gmail.com>2024-03-20 13:05:01 -0400
commitb1529ebaf328d8146e50bc81919fbcd6cd0558e9 (patch)
tree21e6fd7c159837271840ab10020fa11c0ac12122 /srb.py
parentfix docs, use unsigned int in data operations (diff)
downloadsrb_lib-b1529ebaf328d8146e50bc81919fbcd6cd0558e9.tar.gz
srb_lib-b1529ebaf328d8146e50bc81919fbcd6cd0558e9.tar.bz2
srb_lib-b1529ebaf328d8146e50bc81919fbcd6cd0558e9.zip
fix %% in parser helper, and add image
Diffstat (limited to 'srb.py')
-rwxr-xr-xsrb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/srb.py b/srb.py
index 4b72330..4225e14 100755
--- a/srb.py
+++ b/srb.py
@@ -65,7 +65,7 @@ parser.add_argument("--set-health",type=int,choices=range(1,5),help="Set stat he
parser.add_argument("--get-stunt",action="store_true",help="Print stat stunt for profile.")
parser.add_argument("--set-stunt",type=int,choices=range(1,5),help="Set stat stunt for profile.")
parser.add_argument("--get-gun",action="store_true",help="Print stat gun for profile.")
-parser.add_argument("--set-gun",type=int,choices=range(1,6),help="Set stat gun for profile. 5 is octo-gun which normally unlocks at 100% completion of the game.")
+parser.add_argument("--set-gun",type=int,choices=range(1,6),help="Set stat gun for profile. 5 is octo-gun which normally unlocks at 100%% completion of the game.")
parser.add_argument("--lock-everything",action="store_true",help="Set all levels to completed with rank general, all letters, and all balloons.")
parser.add_argument("--unlock-everything",action="store_true",help="Set all levels to not completed. Take all letters and balloons.")
parser.add_argument("--buy-everything",action="store_true",help="Give all purchasable items: planes, weapons, plane stats.")
bgstack15