From ffe4707394a2fe80d20836a4f3205fcb2e424cec Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Wed, 7 Feb 2024 22:29:44 -0800 Subject: [PATCH] Make Command.CheckOwn public --- MCGalaxy/Commands/Command.Helpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/Command.Helpers.cs b/MCGalaxy/Commands/Command.Helpers.cs index e0452961c..57f39b003 100644 --- a/MCGalaxy/Commands/Command.Helpers.cs +++ b/MCGalaxy/Commands/Command.Helpers.cs @@ -70,7 +70,7 @@ namespace MCGalaxy return false; } - protected string CheckOwn(Player p, string name, string type) { + public string CheckOwn(Player p, string name, string type) { if (name.CaselessEq("-own")) { if (p.IsSuper) { SuperRequiresArgs(p, type); return null; } return p.name;