diff options
author | B. Stack <bgstack15@gmail.com> | 2024-03-20 13:05:01 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-03-20 13:05:01 -0400 |
commit | b1529ebaf328d8146e50bc81919fbcd6cd0558e9 (patch) | |
tree | 21e6fd7c159837271840ab10020fa11c0ac12122 /srb.py | |
parent | fix docs, use unsigned int in data operations (diff) | |
download | srb_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-x | srb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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.") |