/// <summary>
 /// Sets time of world
 /// </summary>
 /// <param name="time"></param>
 /// <returns></returns>
 public static Command TimeSet(MinecraftTime time)
 {
     return(new Command($"time set {time}"));
 }
 public async Task <Command> TimeSet(MinecraftTime timeOfDay)
 {
     return(await Server.RunCommandAsync(CommandBuilder.TimeSet(timeOfDay)));
 }