mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-04 06:58:37 -04:00
Compare commits
No commits in common. "b0ed4a50ded2ca7b73fb98320a73a26727b49cf4" and "54a05537c4feffeabced0b7db370d74f465e87a8" have entirely different histories.
b0ed4a50de
...
54a05537c4
@ -7,7 +7,6 @@ using Minecraft_Realms_Emulator.Shared.Data;
|
|||||||
using Minecraft_Realms_Emulator.Shared.Entities;
|
using Minecraft_Realms_Emulator.Shared.Entities;
|
||||||
using Minecraft_Realms_Emulator.Shared.Requests;
|
using Minecraft_Realms_Emulator.Shared.Requests;
|
||||||
using Minecraft_Realms_Emulator.Shared.Responses;
|
using Minecraft_Realms_Emulator.Shared.Responses;
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Minecraft_Realms_Emulator.Modes.External
|
namespace Minecraft_Realms_Emulator.Modes.External
|
||||||
{
|
{
|
||||||
@ -74,7 +73,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -117,7 +116,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -158,8 +157,8 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
string playerName = cookie.Split(";")[1].Split("=")[1];
|
string playerName = cookie.Split(";")[1].Split("=")[1];
|
||||||
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
||||||
|
|
||||||
var ownedWorlds = await _context.Worlds.Where(w => w.OwnerUUID == playerUUID || w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.Minigame).Include(w => w.ParentWorld).ToListAsync();
|
var ownedWorlds = await _context.Worlds.Where(w => w.OwnerUUID == playerUUID || w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).ToListAsync();
|
||||||
var memberWorlds = await _context.Players.Where(p => p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Include(p => p.World.Minigame).Select(p => p.World).ToListAsync();
|
var memberWorlds = await _context.Players.Where(p => p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Select(p => p.World).ToListAsync();
|
||||||
|
|
||||||
List<WorldResponse> allWorlds = [];
|
List<WorldResponse> allWorlds = [];
|
||||||
|
|
||||||
@ -178,7 +177,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -234,7 +233,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -288,8 +287,8 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
string playerName = cookie.Split(";")[1].Split("=")[1];
|
string playerName = cookie.Split(";")[1].Split("=")[1];
|
||||||
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
||||||
|
|
||||||
var ownedWorlds = await _context.Worlds.Where(w => w.ParentWorld != null && w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).Include(w => w.Minigame).ToListAsync();
|
var ownedWorlds = await _context.Worlds.Where(w => w.ParentWorld != null && w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).ToListAsync();
|
||||||
var memberWorlds = await _context.Players.Where(p => p.World.ParentWorld != null && p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Include(p => p.World.Minigame).Select(p => p.World).ToListAsync();
|
var memberWorlds = await _context.Players.Where(p => p.World.ParentWorld != null && p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Select(p => p.World).ToListAsync();
|
||||||
|
|
||||||
List<WorldResponse> allWorlds = [];
|
List<WorldResponse> allWorlds = [];
|
||||||
|
|
||||||
@ -334,7 +333,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -379,7 +378,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -419,7 +418,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
string cookie = Request.Headers.Cookie;
|
string cookie = Request.Headers.Cookie;
|
||||||
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
||||||
|
|
||||||
var world = await _context.Worlds.Include(w => w.Players).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld.Subscription).Include(w => w.Minigame).FirstOrDefaultAsync(w => w.Id == wId);
|
var world = await _context.Worlds.Include(w => w.Players).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld.Subscription).FirstOrDefaultAsync(w => w.Id == wId);
|
||||||
|
|
||||||
if (world.State == nameof(StateEnum.UNINITIALIZED))
|
if (world.State == nameof(StateEnum.UNINITIALIZED))
|
||||||
{
|
{
|
||||||
@ -444,26 +443,26 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
slots.Add(new SlotResponse()
|
slots.Add(new SlotResponse()
|
||||||
{
|
{
|
||||||
SlotId = slot.SlotId,
|
SlotId = slot.SlotId,
|
||||||
Options = JsonConvert.SerializeObject(new
|
Options =
|
||||||
{
|
{
|
||||||
slotName = slot.SlotName,
|
SlotName = slot.SlotName,
|
||||||
gameMode = slot.GameMode,
|
GameMode = slot.GameMode,
|
||||||
hardcore = slot.Difficulty == 3,
|
Hardcore = slot.GameMode == 3,
|
||||||
difficulty = slot.Difficulty,
|
Difficulty = slot.Difficulty,
|
||||||
spawnProection = slot.SpawnProtection,
|
SpawnProtection = slot.SpawnProtection,
|
||||||
forceGameMode = slot.ForceGameMode,
|
ForceGameMode = slot.ForceGameMode,
|
||||||
pvp = slot.Pvp,
|
Pvp = slot.Pvp,
|
||||||
spawnAnimals = slot.SpawnAnimals,
|
SpawnAnimals = slot.SpawnAnimals,
|
||||||
spawnMonsters = slot.SpawnMonsters,
|
SpawnMonsters = slot.SpawnMonsters,
|
||||||
spawnNPCs = slot.SpawnNPCs,
|
SpawnNPCs = slot.SpawnNPCs,
|
||||||
commandBlocks = slot.CommandBlocks,
|
CommandBlocks = slot.CommandBlocks,
|
||||||
version = slot.Version,
|
Version = slot.Version,
|
||||||
compatibility
|
Compatibility = compatibility
|
||||||
})
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var activeSlotOptions = JsonConvert.DeserializeObject<SlotOptionsResponse>(slots.Find(s => s.SlotId == activeSlot.SlotId).Options);
|
SlotOptionsResponse activeSlotOptions = slots.Find(s => s.SlotId == activeSlot.SlotId).Options;
|
||||||
|
|
||||||
if (world.ParentWorld != null)
|
if (world.ParentWorld != null)
|
||||||
{
|
{
|
||||||
@ -478,7 +477,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.GameMode == 3,
|
Hardcore = activeSlot.GameMode == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -721,7 +720,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
slot.CommandBlocks = body.CommandBlocks;
|
slot.CommandBlocks = body.CommandBlocks;
|
||||||
|
|
||||||
_context.SaveChanges();
|
_context.SaveChanges();
|
||||||
|
|
||||||
return Ok(true);
|
return Ok(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -854,7 +853,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
var totalTemplates = _context.Templates.Where(t => t.Type == type).Count();
|
var totalTemplates = _context.Templates.Where(t => t.Type == type).Count();
|
||||||
var templates = _context.Templates.Where(t => t.Type == type).Skip((page - 1) * pageSize).Take(pageSize).ToList();
|
var templates = _context.Templates.Where(t => t.Type == type).Skip((page - 1) * pageSize).Take(pageSize).ToList();
|
||||||
|
|
||||||
TemplatesResponse templatesResponse = new()
|
TemplatesResponse templatesResponse = new()
|
||||||
{
|
{
|
||||||
Page = page,
|
Page = page,
|
||||||
Size = pageSize,
|
Size = pageSize,
|
||||||
|
@ -10,7 +10,6 @@ using Minecraft_Realms_Emulator.Shared.Requests;
|
|||||||
using Minecraft_Realms_Emulator.Shared.Responses;
|
using Minecraft_Realms_Emulator.Shared.Responses;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
||||||
{
|
{
|
||||||
@ -77,7 +76,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -120,7 +119,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -161,8 +160,8 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
string playerName = cookie.Split(";")[1].Split("=")[1];
|
string playerName = cookie.Split(";")[1].Split("=")[1];
|
||||||
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
||||||
|
|
||||||
var ownedWorlds = await _context.Worlds.Where(w => w.OwnerUUID == playerUUID || w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.Minigame).Include(w => w.ParentWorld).ToListAsync();
|
var ownedWorlds = await _context.Worlds.Where(w => w.OwnerUUID == playerUUID || w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).ToListAsync();
|
||||||
var memberWorlds = await _context.Players.Where(p => p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Include(p => p.World.Minigame).Select(p => p.World).ToListAsync();
|
var memberWorlds = await _context.Players.Where(p => p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Select(p => p.World).ToListAsync();
|
||||||
|
|
||||||
List<WorldResponse> allWorlds = [];
|
List<WorldResponse> allWorlds = [];
|
||||||
|
|
||||||
@ -181,7 +180,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -237,7 +236,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -291,8 +290,8 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
string playerName = cookie.Split(";")[1].Split("=")[1];
|
string playerName = cookie.Split(";")[1].Split("=")[1];
|
||||||
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
string gameVersion = cookie.Split(";")[2].Split("=")[1];
|
||||||
|
|
||||||
var ownedWorlds = await _context.Worlds.Where(w => w.ParentWorld != null && w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).Include(w => w.Minigame).ToListAsync();
|
var ownedWorlds = await _context.Worlds.Where(w => w.ParentWorld != null && w.ParentWorld.OwnerUUID == playerUUID).Include(w => w.Subscription).Include(w => w.Slots).Include(w => w.ParentWorld).ToListAsync();
|
||||||
var memberWorlds = await _context.Players.Where(p => p.World.ParentWorld != null && p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Include(p => p.World.Minigame).Select(p => p.World).ToListAsync();
|
var memberWorlds = await _context.Players.Where(p => p.World.ParentWorld != null && p.Uuid == playerUUID && p.Accepted).Include(p => p.World.Subscription).Include(p => p.World.Slots).Include(p => p.World.ParentWorld).Select(p => p.World).ToListAsync();
|
||||||
|
|
||||||
List<WorldResponse> allWorlds = [];
|
List<WorldResponse> allWorlds = [];
|
||||||
|
|
||||||
@ -337,7 +336,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -382,7 +381,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
@ -447,26 +446,26 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
slots.Add(new SlotResponse()
|
slots.Add(new SlotResponse()
|
||||||
{
|
{
|
||||||
SlotId = slot.SlotId,
|
SlotId = slot.SlotId,
|
||||||
Options = JsonConvert.SerializeObject(new
|
Options =
|
||||||
{
|
{
|
||||||
slotName = slot.SlotName,
|
SlotName = slot.SlotName,
|
||||||
gameMode = slot.GameMode,
|
GameMode = slot.GameMode,
|
||||||
hardcore = slot.Difficulty == 3,
|
Hardcore = slot.Difficulty == 3,
|
||||||
difficulty = slot.Difficulty,
|
Difficulty = slot.Difficulty,
|
||||||
spawnProection = slot.SpawnProtection,
|
SpawnProtection = slot.SpawnProtection,
|
||||||
forceGameMode = slot.ForceGameMode,
|
ForceGameMode = slot.ForceGameMode,
|
||||||
pvp = slot.Pvp,
|
Pvp = slot.Pvp,
|
||||||
spawnAnimals = slot.SpawnAnimals,
|
SpawnAnimals = slot.SpawnAnimals,
|
||||||
spawnMonsters = slot.SpawnMonsters,
|
SpawnMonsters = slot.SpawnMonsters,
|
||||||
spawnNPCs = slot.SpawnNPCs,
|
SpawnNPCs = slot.SpawnNPCs,
|
||||||
commandBlocks = slot.CommandBlocks,
|
CommandBlocks = slot.CommandBlocks,
|
||||||
version = slot.Version,
|
Version = slot.Version,
|
||||||
compatibility
|
Compatibility = compatibility
|
||||||
})
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var activeSlotOptions = JsonConvert.DeserializeObject<SlotOptionsResponse>(slots.Find(s => s.SlotId == activeSlot.SlotId).Options);
|
SlotOptionsResponse activeSlotOptions = slots.Find(s => s.SlotId == activeSlot.SlotId).Options;
|
||||||
|
|
||||||
if (world.ParentWorld != null)
|
if (world.ParentWorld != null)
|
||||||
{
|
{
|
||||||
@ -481,7 +480,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
Name = world.Name,
|
Name = world.Name,
|
||||||
Motd = world.Motd,
|
Motd = world.Motd,
|
||||||
GameMode = activeSlot.GameMode,
|
GameMode = activeSlot.GameMode,
|
||||||
IsHardcore = activeSlot.Difficulty == 3,
|
Hardcore = activeSlot.Difficulty == 3,
|
||||||
State = world.State,
|
State = world.State,
|
||||||
WorldType = world.WorldType,
|
WorldType = world.WorldType,
|
||||||
MaxPlayers = world.MaxPlayers,
|
MaxPlayers = world.MaxPlayers,
|
||||||
|
@ -3,12 +3,11 @@
|
|||||||
public class SlotResponse
|
public class SlotResponse
|
||||||
{
|
{
|
||||||
public int SlotId { get; set; }
|
public int SlotId { get; set; }
|
||||||
public SlotSettingsResponse Settings { get; set; } = null!;
|
public SlotOptionsResponse Options { get; set; } = null!;
|
||||||
public string Options { get; set; } = null!;
|
|
||||||
|
|
||||||
public SlotResponse()
|
public SlotResponse()
|
||||||
{
|
{
|
||||||
Settings = new SlotSettingsResponse();
|
Options = new SlotOptionsResponse();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
namespace Minecraft_Realms_Emulator.Shared.Responses
|
|
||||||
{
|
|
||||||
public class SlotSettingsResponse
|
|
||||||
{
|
|
||||||
public bool Hardcore { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
@ -5,12 +5,11 @@ namespace Minecraft_Realms_Emulator.Shared.Responses
|
|||||||
public class WorldResponse : World
|
public class WorldResponse : World
|
||||||
{
|
{
|
||||||
public string RemoteSubscriptionId { get; set; } = new Guid().ToString();
|
public string RemoteSubscriptionId { get; set; } = new Guid().ToString();
|
||||||
public bool IsHardcore { get; set; } = false;
|
public bool Hardcore { get; set; }
|
||||||
public int GameMode { get; set; }
|
public int GameMode { get; set; }
|
||||||
public int DaysLeft { get; set; } = 30;
|
public int DaysLeft { get; set; } = 30;
|
||||||
public bool Expired { get; set; } = false;
|
public bool Expired { get; set; } = false;
|
||||||
public bool ExpiredTrial { get; set; } = false;
|
public bool ExpiredTrial { get; set; } = false;
|
||||||
public bool GracePeriod { get; set; } = false;
|
|
||||||
public string Compatibility { get; set; } = null!;
|
public string Compatibility { get; set; } = null!;
|
||||||
public List<SlotResponse> Slots { get; set; } = null!;
|
public List<SlotResponse> Slots { get; set; } = null!;
|
||||||
public string ActiveVersion { get; set; } = null!;
|
public string ActiveVersion { get; set; } = null!;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user