mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-03 06:28:37 -04:00
Compare commits
No commits in common. "6cb43fcaa31ed860f1ceb6969c21728611217507" and "b0ed4a50ded2ca7b73fb98320a73a26727b49cf4" have entirely different histories.
6cb43fcaa3
...
b0ed4a50de
@ -73,8 +73,8 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
@ -177,8 +177,8 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
@ -333,8 +333,8 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
|
@ -76,8 +76,8 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
@ -180,8 +180,8 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
@ -336,8 +336,8 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
||||
OwnerUUID = world.OwnerUUID,
|
||||
Name = world.Name,
|
||||
Motd = world.Motd,
|
||||
GameMode = activeSlot?.GameMode ?? 0,
|
||||
IsHardcore = activeSlot?.Difficulty == 3,
|
||||
GameMode = activeSlot.GameMode,
|
||||
IsHardcore = activeSlot.Difficulty == 3,
|
||||
State = world.State,
|
||||
WorldType = world.WorldType,
|
||||
MaxPlayers = world.MaxPlayers,
|
||||
|
@ -68,7 +68,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Helpers
|
||||
ProcessStartInfo serverProcessInfo = new();
|
||||
|
||||
serverProcessInfo.FileName = "docker";
|
||||
serverProcessInfo.Arguments = $"container rm -f realm-server-{world.Id}";
|
||||
serverProcessInfo.Arguments = $"container rm realm-server-{world.Id}";
|
||||
|
||||
Process serverProcess = new();
|
||||
serverProcess.StartInfo = serverProcessInfo;
|
||||
|
Loading…
x
Reference in New Issue
Block a user