From 5cb15f6247c71164c73b9de7df1fc568eef3e536 Mon Sep 17 00:00:00 2001 From: Faron <171642577+FaronCD@users.noreply.github.com> Date: Fri, 26 Jul 2024 09:30:03 -0500 Subject: [PATCH] Update launch.json (#26036) Signed-off-by: Faron <171642577+FaronCD@users.noreply.github.com> --- .vscode/launch.json | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index dc67e472b5d..349a859281d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,18 +1,26 @@ { "version": "0.2.0", "configurations": [ - { + { "type": "byond", "request": "launch", "name": "Build & DS Debug", "preLaunchTask": "dm: build - ${command:CurrentDME}", "dmb": "${workspaceFolder}/${command:CurrentDMB}" - }, - { + }, + { + "type": "byond", + "request": "launch", + "name": "Build & DD Debug", + "preLaunchTask": "dm: build - ${command:CurrentDME}", + "dmb": "${workspaceFolder}/${command:CurrentDMB}", + "dreamDaemon": true + }, + { "type": "byond", "request": "launch", "name": "DS Debug", "dmb": "${workspaceFolder}/${command:CurrentDMB}" - } + } ] - } +}