Skip to content

Commit

Permalink
fixed auto-tracking for 'start with sword'
Browse files Browse the repository at this point in the history
  • Loading branch information
Br00ty committed Aug 22, 2023
1 parent 8a4d468 commit 19e9632
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
18 changes: 14 additions & 4 deletions items/common_pop.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,22 @@
{
"name": "Sword",
"type": "progressive",
//"initial_stage_idx": 1,
//"allow_disabled": true,
"loop": false,
//"initial_stage_idx": 1,
"stages": [
{"img": "images/sword2.png","codes": "sword,ring,grass,switch,tubes"},
{"img": "images/sword3.png","codes": "sword,ring,grass,switch,tubes"},
{"img": "images/sword4.png","codes": "sword,ring,grass,switch,tubes"}
{
"img": "images/sword2.png",
"codes": "sword,ring,grass,switch,tubes"
},
{
"img": "images/sword3.png",
"codes": "sword,ring,grass,switch,tubes"
},
{
"img": "images/sword4.png",
"codes": "sword,ring,grass,switch,tubes"
}
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Tunic Randomizer - Item & Map Tracker",
"game_name": "Tunic",
"platform": "PC",
"package_version": "1.5.2",
"package_version": "1.5.3",
"package_uid": "tunic_sapphiresapphic",
"author": "SapphireSapphic, Scout_JD, Br00ty",
"variants": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/autotracking/archipelago.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function onClear(slot_data)
print("slot_data['start_with_sword']: " .. slot_data['start_with_sword'])
local obj = Tracker:FindObjectForCode("sword")
if obj then
obj.CurrentStage = slot_data['ability_shuffling']
obj.CurrentStage = slot_data['start_with_sword']
end
end

Expand Down
2 changes: 1 addition & 1 deletion settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "Tunic Randomizer - Item & Map Tracker",
"game_name": "Tunic",
"author": "SapphireSapphic, Scout_JD, Br00ty",
"version": "1.5.2",
"version": "1.5.3",
"uid": "tunic_sapphiresapphic",
"package_repositories": ["sapphiresapphic.github.io/repository.json"]
}
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.5.3",
"download_url": "https://github.com/SapphireSapphic/TunicTracker/releases/download/1.5.3/TunicTracker.zip",
"sha256": "74CF8A8AFA9BFB29A301A8B277182B2AE567AEAF9C6887A18A89465E3B56583C",
"changelog": [
"fixed 'start with sword' setting being toggle with 'ability shuffle' instead"
]
},
{
"package_version": "1.5.2",
"download_url": "https://github.com/SapphireSapphic/TunicTracker/releases/download/1.5.2/TunicTracker.zip",
Expand Down

0 comments on commit 19e9632

Please sign in to comment.