summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-18 01:17:24 +0200
committersnowleo <schneeleo@gmail.com>2011-07-18 01:17:24 +0200
commitd2e1b2435f39a62efec58aa4f4a829d042c1bc4f (patch)
tree60479744bc39b6837ee06d328e72b447a9814891 /EssentialsProtect/src
parent6733d177df8e332cb806129db6c1f59adfbcd810 (diff)
downloadEssentials-d2e1b2435f39a62efec58aa4f4a829d042c1bc4f.tar
Essentials-d2e1b2435f39a62efec58aa4f4a829d042c1bc4f.tar.gz
Essentials-d2e1b2435f39a62efec58aa4f4a829d042c1bc4f.tar.lz
Essentials-d2e1b2435f39a62efec58aa4f4a829d042c1bc4f.tar.xz
Essentials-d2e1b2435f39a62efec58aa4f4a829d042c1bc4f.zip
Cleaned deprecated functions
Diffstat (limited to 'EssentialsProtect/src')
-rw-r--r--EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java18
-rw-r--r--EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java12
2 files changed, 15 insertions, 15 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java
index 5d0a62d72..de6791305 100644
--- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java
+++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectBlockListener.java
@@ -60,7 +60,7 @@ public class EssentialsProtectBlockListener extends BlockListener
prot.alert(user, blockPlaced.getType().toString(), Util.i18n("alertPlaced"));
}
- final Block below = blockPlaced.getFace(BlockFace.DOWN);
+ final Block below = blockPlaced.getRelative(BlockFace.DOWN);
if (below.getType() == Material.RAILS
&& prot.getSettingBool(ProtectConfig.prevent_block_on_rail)
&& prot.getStorage().isProtected(below, user.getName()))
@@ -77,7 +77,7 @@ public class EssentialsProtectBlockListener extends BlockListener
protect.add(blockPlaced);
if (prot.getSettingBool(ProtectConfig.protect_below_rails))
{
- protect.add(blockPlaced.getFace(BlockFace.DOWN));
+ protect.add(blockPlaced.getRelative(BlockFace.DOWN));
}
}
if ((blockPlaced.getType() == Material.SIGN_POST || blockPlaced.getType() == Material.WALL_SIGN)
@@ -117,7 +117,7 @@ public class EssentialsProtectBlockListener extends BlockListener
return;
}
if (event.getBlock().getType() == Material.OBSIDIAN
- || event.getBlock().getFace(BlockFace.DOWN).getType() == Material.OBSIDIAN)
+ || event.getBlock().getRelative(BlockFace.DOWN).getType() == Material.OBSIDIAN)
{
event.setCancelled(prot.getSettingBool(ProtectConfig.prevent_portal_creation));
return;
@@ -262,14 +262,14 @@ public class EssentialsProtectBlockListener extends BlockListener
storage.unprotectBlock(block);
if (type == Material.RAILS || type == Material.SIGN_POST)
{
- final Block below = block.getFace(BlockFace.DOWN);
+ final Block below = block.getRelative(BlockFace.DOWN);
storage.unprotectBlock(below);
}
else
{
for (BlockFace blockFace : faces)
{
- final Block against = block.getFace(blockFace);
+ final Block against = block.getRelative(blockFace);
storage.unprotectBlock(against);
}
}
@@ -278,7 +278,7 @@ public class EssentialsProtectBlockListener extends BlockListener
{
for (BlockFace blockFace : faces)
{
- final Block against = block.getFace(blockFace);
+ final Block against = block.getRelative(blockFace);
storage.unprotectBlock(against);
}
}
@@ -298,14 +298,14 @@ public class EssentialsProtectBlockListener extends BlockListener
storage.unprotectBlock(block);
if (type == Material.RAILS || type == Material.SIGN_POST)
{
- final Block below = block.getFace(BlockFace.DOWN);
+ final Block below = block.getRelative(BlockFace.DOWN);
storage.unprotectBlock(below);
}
else
{
for (BlockFace blockFace : faces)
{
- final Block against = block.getFace(blockFace);
+ final Block against = block.getRelative(blockFace);
storage.unprotectBlock(against);
}
}
@@ -314,7 +314,7 @@ public class EssentialsProtectBlockListener extends BlockListener
{
for (BlockFace blockFace : faces)
{
- final Block against = block.getFace(blockFace);
+ final Block against = block.getRelative(blockFace);
storage.unprotectBlock(against);
}
}
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java
index defbde243..ceb72bd8d 100644
--- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java
+++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java
@@ -240,19 +240,19 @@ public class EssentialsProtectEntityListener extends EntityListener
for (Block block : event.blockList())
{
- if ((block.getType() == Material.RAILS || block.getFace(BlockFace.UP).getType() == Material.RAILS)
+ if ((block.getType() == Material.RAILS || block.getRelative(BlockFace.UP).getType() == Material.RAILS)
&& prot.getSettingBool(ProtectConfig.protect_rails))
{
event.setCancelled(true);
return;
}
if ((block.getType() == Material.WALL_SIGN
- || block.getFace(BlockFace.NORTH).getType() == Material.WALL_SIGN
- || block.getFace(BlockFace.EAST).getType() == Material.WALL_SIGN
- || block.getFace(BlockFace.SOUTH).getType() == Material.WALL_SIGN
- || block.getFace(BlockFace.WEST).getType() == Material.WALL_SIGN
+ || block.getRelative(BlockFace.NORTH).getType() == Material.WALL_SIGN
+ || block.getRelative(BlockFace.EAST).getType() == Material.WALL_SIGN
+ || block.getRelative(BlockFace.SOUTH).getType() == Material.WALL_SIGN
+ || block.getRelative(BlockFace.WEST).getType() == Material.WALL_SIGN
|| block.getType() == Material.SIGN_POST
- || block.getFace(BlockFace.UP).getType() == Material.SIGN_POST)
+ || block.getRelative(BlockFace.UP).getType() == Material.SIGN_POST)
&& prot.getSettingBool(ProtectConfig.protect_signs))
{
event.setCancelled(true);