From e5210420cb5348e7173288545d5b7e843c3af556 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sun, 26 Jan 2025 01:08:06 +0000 Subject: [PATCH] chore(vscode): force load `hotreload` in launch & debug configuration --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 84a95c2..9a7e46e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,11 +5,11 @@ "version": "0.2.0", "configurations": [ { - "name": "Red-DiscordBot", + "name": "Python: Red-DiscordBot", "type": "debugpy", "request": "launch", "module": "redbot", - "args": ["local", "--dev", "-vvv"] + "args": ["local", "--dev", "-vvv", "--load-cogs=hotreload"] } ] }