diff --git a/.vscode/launch.json b/.vscode/launch.json index b3978530ff6..42a293a3338 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,18 +1,6 @@ { "version": "0.2.0", "configurations": [ - { - "name": "Debug External Libraries", - "type": "cppvsdbg", - "request": "launch", - "program": "${command:dreammaker.returnDreamDaemonPath}", - "cwd": "${workspaceRoot}", - "args": [ - "${command:dreammaker.getFilenameDmb}", - "-trusted" - ], - "preLaunchTask": "Build All" - }, { "type": "byond", "request": "launch", @@ -27,6 +15,18 @@ "preLaunchTask": "Build All", "dmb": "${workspaceFolder}/${command:CurrentDMB}", "dreamDaemon": true + }, + { + "name": "Debug External Libraries", + "type": "cppvsdbg", + "request": "launch", + "program": "${command:dreammaker.returnDreamDaemonPath}", + "cwd": "${workspaceRoot}", + "args": [ + "${command:dreammaker.getFilenameDmb}", + "-trusted" + ], + "preLaunchTask": "Build All" } ] }