From 30ce8feb178f8660f06f91ef4f9bed6799a0cd35 Mon Sep 17 00:00:00 2001 From: William Wallace Date: Mon, 25 Jul 2022 21:22:50 +0100 Subject: [PATCH] Launch Dreamseeker is the default vscode launch config once again (#68666) --- .vscode/launch.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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" } ] }