Fix missing Spout check. Will switch to Bukkit sounds soon.

This commit is contained in:
gmcferrin 2013-01-12 19:17:29 -05:00
parent 931bafe962
commit ea97dcdb55

View File

@ -1,6 +1,7 @@
package com.gmail.nossr50.skills.mining; package com.gmail.nossr50.skills.mining;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.block.Block; import org.bukkit.block.Block;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ItemStack;
@ -56,8 +57,10 @@ public class SuperBreakerEventHandler {
} }
protected void playSpoutSound() { protected void playSpoutSound() {
if (mcMMO.spoutEnabled) {
SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation()); SpoutSounds.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
} }
}
/** /**
* Check for the proper tier of item for use with Super Breaker. * Check for the proper tier of item for use with Super Breaker.