diff --git a/Maps/Block Hunt/BlockHunt_CookieTown.zip b/Maps/Block Hunt/BlockHunt_CookieTown.zip new file mode 100644 index 000000000..5f2f6f928 Binary files /dev/null and b/Maps/Block Hunt/BlockHunt_CookieTown.zip differ diff --git a/Plugins/Mineplex.Core/src/mineplex/core/disguise/disguises/DisguiseCat.java b/Plugins/Mineplex.Core/src/mineplex/core/disguise/disguises/DisguiseCat.java new file mode 100644 index 000000000..ea7ffcfb5 --- /dev/null +++ b/Plugins/Mineplex.Core/src/mineplex/core/disguise/disguises/DisguiseCat.java @@ -0,0 +1,32 @@ +package mineplex.core.disguise.disguises; + +public class DisguiseCat extends DisguiseTameableAnimal +{ + public DisguiseCat(org.bukkit.entity.Entity entity) + { + super(entity); + + DataWatcher.a(18, Byte.valueOf((byte)0)); + } + + public int getCatType() + { + return DataWatcher.getByte(18); + } + + public void setCatType(int i) + { + DataWatcher.watch(18, Byte.valueOf((byte)i)); + } + + @Override + protected int GetEntityTypeId() + { + return 98; + } + + protected String getHurtSound() + { + return "mob.cat.hitt"; + } +}