1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-04-04 06:58:37 -04:00

Compare commits

..

No commits in common. "44a86e27336faee69b94948693b6f1f33d120157" and "49bb02f3cf77977ccfeee4340a5a1575b363a549" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -155,7 +155,7 @@ namespace MyMcRealms.Controllers
ErrorResponse errorResponse = new()
{
ErrorCode = 400,
ErrorMsg = "You wish lmao"
ErrorMsg = "You with lmao"
};
return BadRequest(errorResponse);

View File

@ -48,10 +48,10 @@ namespace MyMcRealms.Controllers
string worldName = world.Ops.ToArray().Length == 0 ? world.ServerName : $"{world.Ops[0].Name}'s server";
string worldState = !isBanned ? "OPEN" : "CLOSED";
// if (!isCompatibleOnOlderVersions)
// {
// worldState = "CLOSED";
// }
if (!isCompatibleOnOlderVersions)
{
worldState = "CLOSED";
}
WorldResponse response = new()
{