Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Launch.lua
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ function launch:OnFrame()
if self.main.OnFrame then
local errMsg = PCall(self.main.OnFrame, self.main)
if errMsg then
-- Send user to build list menu if a build crashes on initial load
if self.main.modes.BUILD.outputRevision == 1 and self.main.modes.BUILD.buildFlag and not self.devMode then
main:SetMode("LIST")
end
self:ShowErrMsg("In 'OnFrame': %s", errMsg)
end
end
Expand Down