The start of the great whitespace cleanup.

This commit is contained in:
GJ
2012-03-06 18:02:18 -05:00
parent e822515403
commit 6733eb93f2
3 changed files with 413 additions and 430 deletions

View File

@ -178,7 +178,7 @@ public class Excavation
{
PlayerAnimationEvent armswing = new PlayerAnimationEvent(player);
Bukkit.getPluginManager().callEvent(armswing);
Excavation.excavationProcCheck(block, player);
Excavation.excavationProcCheck(block, player);
Excavation.excavationProcCheck(block, player);
Excavation.excavationProcCheck(block, player);
}

View File

@ -36,7 +36,7 @@ import com.gmail.nossr50.datatypes.SkillType;
public class Mining
{
{
public static void miningDrops(Block block)
{
@ -125,7 +125,7 @@ public class Mining
case SANDSTONE:
xp += LoadProperties.msandstone;
break;
case STONE:
case STONE:
xp += LoadProperties.mstone;
break;
}
@ -135,7 +135,7 @@ public class Mining
}
public static void blockProcSimulate(Block block, Player player)
{
{
//Drop natural block with Silk Touch
if(player.getItemInHand().containsEnchantment(Enchantment.SILK_TOUCH))
m.mcDropItem(block.getLocation(), new ItemStack(block.getType(), 1));
@ -186,7 +186,7 @@ public class Mining
}
public static void SuperBreakerBlockCheck(Player player, Block block, mcMMO plugin)
{
{
Material type = block.getType();
int tier = m.getTier(player);
int durabilityLoss = LoadProperties.abilityDurabilityLoss;