mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
Fix trigger pixel for saddlebags
This commit is contained in:
parent
2c8ecdf1b5
commit
9d5c6d1a37
1 changed files with 2 additions and 2 deletions
|
@ -5,8 +5,8 @@ import java.util.List;
|
|||
|
||||
public enum PonyWearable implements ITriggerPixelMapped<PonyWearable> {
|
||||
NONE(0),
|
||||
SADDLE_BAGS(0xff0000),
|
||||
HAT(0x00ff00);
|
||||
SADDLE_BAGS(255),
|
||||
HAT(100);
|
||||
|
||||
private int triggerValue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue