Fixed player disguise not playing the hurt sound

This commit is contained in:
libraryaddict 2014-01-19 08:24:27 +13:00
parent 1c6dc8233f
commit f24eaa4854

View File

@ -3,6 +3,8 @@ package me.libraryaddict.disguise.utilities;
import java.util.HashMap;
import java.util.HashSet;
import me.libraryaddict.disguise.utilities.ReflectionManager.LibVersion;
import org.bukkit.Sound;
/**
@ -58,7 +60,8 @@ public enum DisguiseSound {
PIG_ZOMBIE("mob.zombiepig.zpighurt", null, "mob.zombiepig.zpigdeath", "mob.zombiepig.zpig", "mob.zombiepig.zpigangry"),
PLAYER("damage.hit", "step.grass", "damage.hit", null),
PLAYER(LibVersion.is1_7() ? "game.player.hurt" : "damage.hit", "step.grass", LibVersion.is1_7() ? "game.player.hurt"
: "damage.hit", null),
SHEEP("mob.sheep.say", "mob.sheep.step", null, "mob.sheep.say", "mob.sheep.shear"),