mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-04 06:58:37 -04:00
Compare commits
2 Commits
fe1c7aaf63
...
de45bf843e
Author | SHA1 | Date | |
---|---|---|---|
de45bf843e | |||
f133c237ef |
@ -517,7 +517,6 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
var connection = new Connection
|
var connection = new Connection
|
||||||
{
|
{
|
||||||
World = world,
|
World = world,
|
||||||
Address = defaultServerAddress.Value
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Slot slot = new()
|
Slot slot = new()
|
||||||
@ -679,7 +678,7 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
return BadRequest(errorResponse);
|
return BadRequest(errorResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (body.Description.Length > 32)
|
if (body.Description?.Length > 32)
|
||||||
{
|
{
|
||||||
ErrorResponse errorResponse = new()
|
ErrorResponse errorResponse = new()
|
||||||
{
|
{
|
||||||
@ -825,7 +824,10 @@ namespace Minecraft_Realms_Emulator.Modes.External
|
|||||||
[HttpGet("v1/{wId}/join/pc")]
|
[HttpGet("v1/{wId}/join/pc")]
|
||||||
public ActionResult<Connection> Join(int wId)
|
public ActionResult<Connection> Join(int wId)
|
||||||
{
|
{
|
||||||
var connection = _context.Connections.FirstOrDefault(x => x.World.Id == wId);
|
var connection = _context.Connections.Include(c => c.World).FirstOrDefault(x => x.World.Id == wId);
|
||||||
|
|
||||||
|
// Set the server's addrees to its MOTD
|
||||||
|
connection.Address = connection.World.Motd;
|
||||||
|
|
||||||
return Ok(connection);
|
return Ok(connection);
|
||||||
}
|
}
|
||||||
|
@ -731,7 +731,7 @@ namespace Minecraft_Realms_Emulator.Modes.Realms.Controllers
|
|||||||
return BadRequest(errorResponse);
|
return BadRequest(errorResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (body.Description.Length > 32)
|
if (body.Description?.Length > 32)
|
||||||
{
|
{
|
||||||
ErrorResponse errorResponse = new()
|
ErrorResponse errorResponse = new()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user