From b9767ab99dc1392e3c9fa21d443257ea14b24747 Mon Sep 17 00:00:00 2001 From: CosminPerRam Date: Mon, 5 May 2025 22:22:58 +0300 Subject: [PATCH] fix(protocols/sdtd): commands would end up missing the first line --- protocols/sdtd.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protocols/sdtd.js b/protocols/sdtd.js index 3e72362..d11e233 100644 --- a/protocols/sdtd.js +++ b/protocols/sdtd.js @@ -33,7 +33,8 @@ export default class sdtd extends Valve { port: telnetPort, password: telnetPassword, passwordPrompt: /Please enter password:/i, - shellPrompt: /\r\n$/ + shellPrompt: /\r\n$/, + echoLines: 0 }) await this.telnetCallPlayers(state)