1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 03:42:50 +02:00
Minecraft-Phantom-Panel/Common/Phantom.Common.Data/Replies/LaunchInstanceResult.cs

14 lines
365 B
C#

namespace Phantom.Common.Data.Replies;
public enum LaunchInstanceResult : byte {
LaunchInitiated = 1,
InstanceAlreadyLaunching = 2,
InstanceAlreadyRunning = 3,
InstanceLimitExceeded = 4,
MemoryLimitExceeded = 5,
ServerPortNotAllowed = 6,
ServerPortAlreadyInUse = 7,
RconPortNotAllowed = 8,
RconPortAlreadyInUse = 9
}