Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
Adjust found esc to work as per others
Browse files Browse the repository at this point in the history
  • Loading branch information
robthomson committed Sep 5, 2024
1 parent 266f94f commit 89f3d59
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions scripts/rf2ethos/pages/esc/flrtr/esc_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,13 @@ return {
if foundEsc == true and foundEscDone == false then
foundEscDone = true
rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer)
rf2ethos.triggers.isReady = true
end

if foundEsc == false and rf2ethos.dialogs.progressCounter >= 85 then rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer) end

if foundEsc == false and rf2ethos.dialogs.progressCounter >= 85 then
rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer)
rf2ethos.triggers.isReady = true
end
end
}

7 changes: 5 additions & 2 deletions scripts/rf2ethos/pages/esc/rf2yge/esc_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,13 @@ return {
if foundEsc == true and foundEscDone == false then
foundEscDone = true
rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer)
rf2ethos.triggers.isReady = true
end

if foundEsc == false and rf2ethos.dialogs.progressCounter >= 85 then rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer) end

if foundEsc == false and rf2ethos.dialogs.progressCounter >= 85 then
rf2ethos.escui.openPageEscTool(rf2ethos.escManufacturer)
rf2ethos.triggers.isReady = true
end
end
}

0 comments on commit 89f3d59

Please sign in to comment.