Skip to content

Commit

Permalink
Fix copy/paste logic issue with BoB Island accessibility. (#14)
Browse files Browse the repository at this point in the history
Should have required LJ not TJ, wups.
  • Loading branch information
ThePhar authored Sep 23, 2024
2 parents 65110ce + 99a273a commit f22d43e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pack_root/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"platform": "pc",
"game_name": "Super Mario 64",
"package_uid": "pharware-sm64-pack",
"package_version": "1.2.1",
"package_version": "1.2.2",
"min_poptracker_version": "0.25.5",
"versions_url": "https://raw.githubusercontent.com/ThePhar/APSM64TrackerPack/main/versions.json",
"author": "Phar",
Expand All @@ -15,4 +15,4 @@
]
}
}
}
}
2 changes: 1 addition & 1 deletion pack_root/scripts/logic/stages/bob.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function CanAccessBOBIsland()
return GetAccessibility({
(HasCannon(course)),
(HasMoves("TJ") and HasCap("WC") and StrictCannonAccessibilityLevel()),
(HasMoves("TJ") and math.min(StrictCannonAccessibilityLevel(), StrictMovementAccessibilityLevel())),
(HasMoves("LJ") and math.min(StrictCannonAccessibilityLevel(), StrictMovementAccessibilityLevel())),
})
end

Expand Down
6 changes: 6 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"versions": [
{
"package_version": "1.2.2",
"download_url": "https://github.com/ThePhar/APSM64TrackerPack/releases/download/1.2.2/PharAPSM64_1.2.2.zip",
"sha256": "63642a93a38f116c31e90672be712c79bfd443956245d9950a790936c4bc6ef6",
"changelog": []
},
{
"package_version": "1.2.1",
"download_url": "https://github.com/ThePhar/APSM64TrackerPack/releases/download/1.2.1/PharAPSM64_1.2.1.zip",
Expand Down

0 comments on commit f22d43e

Please sign in to comment.