Skip to content

Commit

Permalink
v1.73 final
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariescyn committed Mar 2, 2024
1 parent 5d3e30c commit 101c5b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions data/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
Fixed issue with import/create save not working for some users
I have hundreds of hours invested in this project with over 8,000 lines of code written
Fixed issue with stat editor being unable to acquire stats from some characters
If you enjoy the app and want to support future updates, PLEASE donate! Even $1 is appreciated!
2 changes: 1 addition & 1 deletion hexedit.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def get_stats(file, char_slot):
indexes = [] # List to store the indexes of the stats

for ind, b in enumerate(slot1):
if ind > 60000:
if ind > 120000:
return None

try:
Expand Down
4 changes: 2 additions & 2 deletions os_layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
update_dir = "./data/updates/"
temp_dir = "./data/temp/"
post_update_file = "./data/post.update"
version = "v1.72"
v_num = 1.72 # Used for checking version for update
version = "v1.73"
v_num = 1.73 # Used for checking version for update
video_url = "https://youtu.be/LQxmFuq3dfg"
custom_search_tutorial_url = "https://youtu.be/li-ZiMXBmRk"
background_img = "./data/background.png"
Expand Down

0 comments on commit 101c5b2

Please sign in to comment.