Skip to content

Commit 197fb85

Browse files
committed
🛠️ Added webhook config status to status notif.
Forgot to include this when pushing the new feature.
1 parent 104ea77 commit 197fb85

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

START.bat

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22
title Checking dependencies...
3-
set scriptVersion=v1.3.0
3+
set scriptVersion=v1.3.1
44
set currentConfigVersion=v1.3.0
55

66
REM Set restart counter variables
@@ -88,6 +88,11 @@ echo Server: %serverName%
8888
echo Initial RAM: %iniRam% ^| Maximum RAM: %maxRam%
8989
echo Auto-restart: %autoRestart%
9090
echo Server GUI: %GUI%
91+
if not "%webhookURL%"=="" (
92+
echo Discord Webhook: configured
93+
) else (
94+
echo Discord Webhook: not configured
95+
)
9196
echo .............................................
9297
echo Server initialising...
9398

@@ -245,6 +250,11 @@ echo Server: %serverName%
245250
echo Initial RAM: %iniRam% ^| Maximum RAM: %maxRam%
246251
echo Auto-restart: %autoRestart%
247252
echo Server GUI: %GUI%
253+
if not "%webhookURL%"=="" (
254+
echo Discord Webhook: configured
255+
) else (
256+
echo Discord Webhook: not configured
257+
)
248258
echo .............................................
249259
CHOICE /N /C:YN /M "These are your desired settings? (Y/N): "
250260
if %errorlevel%==1 goto saveSetup

0 commit comments

Comments
 (0)