No stick messages in non-claim worlds.

In "disabled" claims mode worlds, right clicking with the stick will not
display any message.
This commit is contained in:
ryanhamshire 2015-07-16 19:03:37 -07:00
parent f679d4b1b1
commit 9cc4835383

View File

@ -1709,7 +1709,10 @@ class PlayerEventHandler implements Listener
//if he's investigating a claim
else if(materialInHand == GriefPrevention.instance.config_claims_investigationTool)
{
//if holding shift (sneaking), show all claims in area
//if claims are disabled in this world, do nothing
if(!GriefPrevention.instance.claimsEnabledForWorld(player.getWorld())) return;
//if holding shift (sneaking), show all claims in area
if(player.isSneaking() && player.hasPermission("griefprevention.visualizenearbyclaims"))
{
//find nearby claims