forked from GeyserMC/Geyser
Update PotionMixData
This commit is contained in:
parent
06fa0de793
commit
bb630dc867
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ import java.util.stream.Collectors;
|
||||||
public class JavaDeclareRecipesTranslator extends PacketTranslator<ServerDeclareRecipesPacket> {
|
public class JavaDeclareRecipesTranslator extends PacketTranslator<ServerDeclareRecipesPacket> {
|
||||||
private static final Collection<PotionMixData> POTION_MIXES =
|
private static final Collection<PotionMixData> POTION_MIXES =
|
||||||
Arrays.stream(new int[]{372, 331, 348, 376, 289, 437, 353, 414, 382, 375, 462, 378, 396, 377, 370, 469, 470})
|
Arrays.stream(new int[]{372, 331, 348, 376, 289, 437, 353, 414, 382, 375, 462, 378, 396, 377, 370, 469, 470})
|
||||||
.mapToObj(ingredient -> new PotionMixData(0, ingredient, 0))
|
.mapToObj(ingredient -> new PotionMixData(0, ingredient, 0, 0, 0, 0)) //TODO: Confirm this is correct behavior.
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue