fucker google

This commit is contained in:
Elijah R 2024-04-02 23:20:55 -04:00
parent 6f0def0d03
commit 16a9f80a6f

View file

@ -132,7 +132,7 @@ public class DiscordCommands : ApplicationCommandModule
return; return;
} }
await vm.cvm.Reboot(); await vm.cvm.Reboot();
await ctx.CreateResponseAsync($"Successfully rebooted {vm}"); await ctx.CreateResponseAsync($"Successfully rebooted {vm.Config.Name}");
} }
[SlashCommand("restore", "Restore a VM")] [SlashCommand("restore", "Restore a VM")]
@ -152,7 +152,7 @@ public class DiscordCommands : ApplicationCommandModule
return; return;
} }
await vm.cvm.Restore(); await vm.cvm.Restore();
await ctx.CreateResponseAsync($"Successfully restored {vm}"); await ctx.CreateResponseAsync($"Successfully restored {vm.Config.Name}");
} }
[SlashCommand("getip", "Get the IP address of a user")] [SlashCommand("getip", "Get the IP address of a user")]