Fix /com <name> for communities not explicitly loaded
This commit is contained in:
parent
73674d56f7
commit
51443ebd46
@ -8,6 +8,7 @@ import mineplex.core.common.util.F;
|
||||
import mineplex.core.common.util.UtilPlayer;
|
||||
import mineplex.core.communities.data.Community;
|
||||
import mineplex.core.communities.CommunityManager;
|
||||
import mineplex.core.communities.data.ICommunity;
|
||||
import mineplex.core.communities.gui.pages.CommunityMembersPage;
|
||||
import mineplex.core.communities.gui.pages.CommunityOverviewPage;
|
||||
|
||||
@ -50,14 +51,14 @@ public class CommunityCommand extends MultiCommandBase<CommunityManager>
|
||||
return;
|
||||
}
|
||||
|
||||
Community community = Plugin.getLoadedCommunity(args[0]);
|
||||
ICommunity community = Plugin.getCommunity(args[0]);
|
||||
if (community == null)
|
||||
{
|
||||
UtilPlayer.message(caller, F.main(Plugin.getName(), "Could not find community " + F.name(args[0]) + "!"));
|
||||
}
|
||||
else
|
||||
{
|
||||
new CommunityMembersPage(caller, community);
|
||||
Plugin.tempLoadCommunity(community.getId(), real -> new CommunityMembersPage(caller, real));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user