Identify unsigned byte properly

This commit is contained in:
Myles 2016-07-02 21:07:41 +01:00
parent c6d3c97c65
commit abe3c4b0c9

View File

@ -6,7 +6,7 @@ import us.myles.ViaVersion.api.type.TypeConverter;
public class UnsignedByteType extends Type<Short> implements TypeConverter<Short> {
public UnsignedByteType() {
super(Short.class);
super("Unsigned Byte", Short.class);
}
@Override