Skip to content

Commit

Permalink
Fix logic issue with Mario Wings to the Sky not requiring cannon. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar authored Jun 29, 2024
2 parents 3743d52 + ca8d39e commit 65110ce
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/changelogs/1.2.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"Fix logic issue with Mario Wings to the Sky not requiring cannon."
]
2 changes: 1 addition & 1 deletion 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.0",
"package_version": "1.2.1",
"min_poptracker_version": "0.25.5",
"versions_url": "https://raw.githubusercontent.com/ThePhar/APSM64TrackerPack/main/versions.json",
"author": "Phar",
Expand Down
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 @@ -11,7 +11,7 @@ end
function CanAccessBOBWings()
return GetAccessibility({
(HasCannon(course) and HasCap("WC")),
(math.min(StrictCannonAccessibilityLevel(), StrictCapAccessibilityLevel())),
(HasCannon(course) and StrictCapAccessibilityLevel()),
})
end

Expand Down
8 changes: 8 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"versions": [
{
"package_version": "1.2.1",
"download_url": "https://github.com/ThePhar/APSM64TrackerPack/releases/download/1.2.1/PharAPSM64_1.2.1.zip",
"sha256": "0cfa30f73fc28ed6a1dd1b8fcbfbfd06653410f86507085b3141218e6d7de1f4",
"changelog": [
"Fix logic issue with Mario Wings to the Sky not requiring cannon."
]
},
{
"package_version": "1.2.0",
"download_url": "https://github.com/ThePhar/APSM64TrackerPack/releases/download/1.2.0/PharAPSM64_1.2.0.zip",
Expand Down

0 comments on commit 65110ce

Please sign in to comment.