Remove SendText delay in C# scripts (#1480)

Delay is not necessary anymore since MCC has a global message queue now (#661 / 9169036893)
This commit is contained in:
ORelio 2021-02-25 18:02:41 +01:00 committed by GitHub
parent 4d0d81d5c8
commit b78e8e064a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -238,7 +238,6 @@ namespace MinecraftClient
{
base.SendText(text is string ? (string)text : text.ToString());
tickHandler.WaitOne();
Thread.Sleep(1000);
return true;
}