From d982c4a4734e2080b726f641a83c6ae9a178285d Mon Sep 17 00:00:00 2001 From: SleepyFox Date: Thu, 10 Feb 2022 07:28:23 +0100 Subject: [PATCH] Changed miliseconds to seconds in powershell script --- powershell/fucking_coffee.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/fucking_coffee.psm1 b/powershell/fucking_coffee.psm1 index 980eb62..b7fbfed 100644 --- a/powershell/fucking_coffee.psm1 +++ b/powershell/fucking_coffee.psm1 @@ -58,5 +58,5 @@ Function Send-TelNetCommands $writer.WriteLine($command) $writer.Flush() - Start-Sleep -Milliseconds $WaitTime + Start-Sleep -s $WaitTime }