diff --git a/src/com/dogonfire/gods/managers/AltarManager.java b/src/com/dogonfire/gods/managers/AltarManager.java index 0684d3d..7a7a675 100644 --- a/src/com/dogonfire/gods/managers/AltarManager.java +++ b/src/com/dogonfire/gods/managers/AltarManager.java @@ -68,7 +68,7 @@ public Block getAltarBlockFromSign(Block block) { return null; } - if ((!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.TORCH)) && (!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.REDSTONE_TORCH))) + if ((!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.SOUL_TORCH)) && (!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.TORCH)) && (!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.REDSTONE_TORCH))) { return null; } @@ -365,7 +365,7 @@ public boolean isAltarBlock(Block block) { return false; } - if ((block.getRelative(BlockFace.UP).getType() != Material.TORCH) && (block.getRelative(BlockFace.UP).getType() != Material.REDSTONE_TORCH)) + if ((block.getRelative(BlockFace.UP).getType() != Material.SOUL_TORCH) && (block.getRelative(BlockFace.UP).getType() != Material.TORCH) && (block.getRelative(BlockFace.UP).getType() != Material.REDSTONE_TORCH)) { return false; } @@ -401,7 +401,7 @@ public boolean isAltarSign(Block block) return false; } - if ((!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.TORCH)) && (!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.REDSTONE_TORCH))) + if ((!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.SOUL_TORCH)) &&(!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.TORCH)) && (!altarBlock.getRelative(BlockFace.UP).getType().equals(Material.REDSTONE_TORCH))) { return false; } @@ -414,7 +414,7 @@ public boolean isAltarTorch(Block block) { return false; } - if ((block.getType() != Material.TORCH) && (block.getType() != Material.REDSTONE_TORCH)) + if ((block.getType() != Material.TORCH) && (block.getType() != Material.SOUL_TORCH) && (block.getType() != Material.REDSTONE_TORCH)) { return false; }