mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-03-07 04:08:00 +01:00
11 lines
259 B
C#
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";
|
|
}
|
|
}
|