Skip to content

Commit 4036ddf

Browse files
Clean up unnecessary MsgBox calls
1 parent e9f7bc0 commit 4036ddf

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Lib/LaunchpadLauncher/Game/GameBase.ahk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,19 +165,16 @@ class GameBase {
165165
}
166166

167167
if (!steamOpenCondition.Evaluate()) {
168-
MsgBox("Steam is not open...")
169168
SetTimer(this.overlayCallbackObj, 0)
170169
return
171170
}
172171

173172
if (overlayAttachedCondtion.Evaluate()) {
174-
MsgBox("Overlay attached...")
175173
SetTimer(this.overlayCallbackObj, 0)
176174
return
177175
}
178176

179177
if (DateDiff(A_Now, this.launchTime, "S") >= this.launcherConfig["OverlayWait"]) {
180-
MsgBox("Launching overlay!")
181178
this.StartOverlay()
182179
return
183180
}

Lib/Shared/AppLib/Container/ServiceContainer.ahk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ class ServiceContainer extends ContainerBase {
33
serviceObj := super.Get(key)
44

55
if (!serviceObj) {
6-
MsgBox(key)
76
throw ServiceNotFoundException("Service '" . key . "' has not been loaded")
87
}
98

0 commit comments

Comments
 (0)