diff --git a/MyMcRealms/Controllers/TrialController.cs b/MyMcRealms/Controllers/TrialController.cs index 972f4f9..e2d0438 100644 --- a/MyMcRealms/Controllers/TrialController.cs +++ b/MyMcRealms/Controllers/TrialController.cs @@ -8,8 +8,8 @@ namespace MyMcRealms.Controllers [RequireMinecraftCookie] public class TrialController : ControllerBase { - [HttpGet(Name = "GetTrial")] - public bool Get() { + [HttpGet] + public bool GetTrial() { return false; } } diff --git a/MyMcRealms/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs index c094a0e..99f450d 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -4,7 +4,6 @@ using MyMcRealms.MyMcAPI.Responses; using MyMcRealms.Responses; using Newtonsoft.Json; using Semver; -using System.Text.Json; namespace MyMcRealms.Controllers {