1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2026-03-07 04:08:00 +01:00
Files

11 lines
259 B
C#

namespace Phantom.Agent.Services.Games;
static class MinecraftCommand {
public const string SaveOn = "save-on";
public const string SaveOff = "save-off";
public static string SaveAll(bool flush) {
return flush ? "save-all flush" : "save-all";
}
}