Add horse watcher

This commit is contained in:
Andrew 2013-07-07 19:18:23 +12:00
parent 728766ef48
commit c2530f4fe2

View File

@ -0,0 +1,14 @@
package me.libraryaddict.disguise.DisguiseTypes.Watchers;
public class HorseWatcher extends AgeableWatcher {
public HorseWatcher(int entityId) {
super(entityId);
setValue(16, 0);
setValue(19, (byte) 0);
setValue(20, 0);
setValue(21, "");
setValue(22, 0);
}
}