1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 09:35:26 +02:00

[trunk] add setting warn-on-build-disallow to protect. setting this will give users with build:false a warning

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1189 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo
2011-04-14 21:14:16 +00:00
parent 7e93ef0bd0
commit 2b1164f021
4 changed files with 18 additions and 3 deletions

View File

@@ -2,8 +2,7 @@ package com.earth2me.essentials.protect;
import com.earth2me.essentials.Essentials;
import com.earth2me.essentials.User;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.ChatColor;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.block.BlockFace;
@@ -46,6 +45,10 @@ public class EssentialsProtectBlockListener extends BlockListener
if (EssentialsProtect.playerSettings.get("protect.disable.build") && !user.canBuild())
{
if(Essentials.getSettings().warnOnBuildDisallow())
{
user.sendMessage(ChatColor.RED + "You are not permitted to build");
}
event.setCancelled(true);
return;
}

View File

@@ -40,6 +40,10 @@ public class EssentialsProtectPlayerListener extends PlayerListener
if (EssentialsProtect.playerSettings.get("protect.disable.build") && !user.canBuild())
{
if(Essentials.getSettings().warnOnBuildDisallow())
{
user.sendMessage(ChatColor.RED + "You are not permitted to build");
}
event.setCancelled(true);
return;
}