Skip to content

Commit 175ac19

Browse files
committed
FIX: disable the the feature when in dev mode for easier debugging
1 parent c550926 commit 175ac19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Launch.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function launch:OnFrame()
111111
local errMsg = PCall(self.main.OnFrame, self.main)
112112
if errMsg then
113113
-- Send user to build list menu if a build crashes on initial load
114-
if self.main.modes.BUILD.outputRevision == 1 and self.main.modes.BUILD.buildFlag then
114+
if self.main.modes.BUILD.outputRevision == 1 and self.main.modes.BUILD.buildFlag and not self.devMode then
115115
main:SetMode("LIST")
116116
end
117117
self:ShowErrMsg("In 'OnFrame': %s", errMsg)

0 commit comments

Comments
 (0)