File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -76,3 +76,6 @@ Initial Release.
7676
7777# 1.2.14
7878* Minor logic scripting fixes for Crystal Palace access.
79+
80+ # 1.2.15
81+ * Minor logic fix for Toy Box Red Station access (missed case in 1.2.14).
Original file line number Diff line number Diff line change 22 "name" : " Paper Mario Randomizer Tracker" ,
33 "game_name" : " Paper Mario" ,
44 "platform" : " n64" ,
5- "package_version" : " 1.2.14 " ,
5+ "package_version" : " 1.2.15 " ,
66 "package_uid" : " pmr_tracker_phantom5800" ,
77 "author" : " Phantom5800" ,
88 "variants" : {
Original file line number Diff line number Diff line change 5656 "changelog" : [
5757 " Minor scripting logic adjustments."
5858 ]
59+ },
60+ {
61+ "package_version" : " 1.2.15" ,
62+ "download_url" : " https://github.com/phantom5800/pmr-emotracker/releases/download/1.2.15/PaperMarioTrackerPhantom.zip" ,
63+ "sha256" : " B6257B3AF6AC35E34E8026CD55DD523F7278AD2A84E67B6F0BD1AB732DC629C6" ,
64+ "changelog" : [
65+ " Minor logic fix for Toy Box Red Station access (missed case in 1.2.14)."
66+ ]
5967 }
6068 ]
6169}
Original file line number Diff line number Diff line change 216216function ToyBoxRedAccess ()
217217 if hasItem (" hammer" ) then
218218 local green ,access = ToyBoxGreenAccess ()
219- if green == 1 and access == nil and hasItem (" mystery_note_base" ) then
219+ if green and access == nil and hasItem (" mystery_note_base" ) then
220220 return true
221- elseif green > 0 then
221+ elseif green then
222222 return true , AccessibilityLevel .SequenceBreak -- out of logic
223223 end
224224 end
You can’t perform that action at this time.
0 commit comments