Fixed Horse options
This commit is contained in:
		| @@ -118,9 +118,9 @@ public class HorseWatcher extends AgeableWatcher { | ||||
|     private void setHorseFlag(int i, boolean flag) { | ||||
|         byte j = (byte) getValue(12, (byte) 0); | ||||
|         if (flag) { | ||||
|             setValue(12, j | i); | ||||
|             setValue(12, (byte) (j | i)); | ||||
|         } else { | ||||
|             setValue(12, j & ~i); | ||||
|             setValue(12, (byte) (j & ~i)); | ||||
|         } | ||||
|         sendData(12); | ||||
|     } | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| name: LibsDisguises | ||||
| main: me.libraryaddict.disguise.LibsDisguises | ||||
| description: A disguise plugin with various disguises. | ||||
| version: 9.0.1 | ||||
| version: 9.0.2 | ||||
| author: libraryaddict | ||||
| authors: [Byteflux, Navid K.] | ||||
| softdepend: [ProtocolLib] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user