Fix DyeColor referencing incorrect Tag path. Fixes #6301 (#6303)

This commit is contained in:
Richard Freimer 2019-11-12 18:11:43 -05:00 committed by LexManos
parent b1042f2c3c
commit a72b774acf

View file

@ -12,7 +12,7 @@
int j = (p_i50049_5_ & '\uff00') >> 8; int j = (p_i50049_5_ & '\uff00') >> 8;
int k = (p_i50049_5_ & 255) >> 0; int k = (p_i50049_5_ & 255) >> 0;
this.field_196066_w = k << 16 | j << 8 | i << 0; this.field_196066_w = k << 16 | j << 8 | i << 0;
+ this.tag = new net.minecraft.tags.ItemTags.Wrapper(new net.minecraft.util.ResourceLocation("minecraft", "dyes_" + p_i50049_4_)); + this.tag = new net.minecraft.tags.ItemTags.Wrapper(new net.minecraft.util.ResourceLocation("forge", "dyes/" + p_i50049_4_));
this.field_193352_x = new float[]{(float)i / 255.0F, (float)j / 255.0F, (float)k / 255.0F}; this.field_193352_x = new float[]{(float)i / 255.0F, (float)j / 255.0F, (float)k / 255.0F};
this.field_196067_y = p_i50049_7_; this.field_196067_y = p_i50049_7_;
} }