mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
16 lines
381 B
C#
16 lines
381 B
C#
namespace Phantom.Agent.Minecraft.Command;
|
|
|
|
public static class MinecraftCommand {
|
|
public const string SaveOn = "save-on";
|
|
public const string SaveOff = "save-off";
|
|
public const string Stop = "stop";
|
|
|
|
public static string Say(string message) {
|
|
return "say " + message;
|
|
}
|
|
|
|
public static string SaveAll(bool flush) {
|
|
return flush ? "save-all flush" : "save-all";
|
|
}
|
|
}
|