added /countdown clear

This commit is contained in:
2019-09-07 20:28:49 +02:00
parent fba892382a
commit bcb1fc6dce

View File

@@ -363,6 +363,14 @@ namespace ReallifeGamemode.Server.Commands
return; return;
} }
if (timer_string == "clear")
{
foreach (Client c in NAPI.Pools.GetAllPlayers())
{
c.TriggerEvent("countdown", 0, "ich liebe balbo");
}
}
int timer = int.Parse(timer_string); int timer = int.Parse(timer_string);
foreach (Client c in NAPI.Pools.GetAllPlayers()) foreach (Client c in NAPI.Pools.GetAllPlayers())