From a489b4865bb7f814fac9e0b759dbfc8d7b7ba782 Mon Sep 17 00:00:00 2001 From: libraryaddict Date: Mon, 19 Jul 2021 14:31:23 +1200 Subject: [PATCH] Add Axolotl Variant --- .../disguise/utilities/params/ParamInfoTypes.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/me/libraryaddict/disguise/utilities/params/ParamInfoTypes.java b/src/main/java/me/libraryaddict/disguise/utilities/params/ParamInfoTypes.java index 9d17bea8..fbd524fb 100644 --- a/src/main/java/me/libraryaddict/disguise/utilities/params/ParamInfoTypes.java +++ b/src/main/java/me/libraryaddict/disguise/utilities/params/ParamInfoTypes.java @@ -96,6 +96,10 @@ public class ParamInfoTypes { paramInfos.add(new ParamInfoEnum(Panda.Gene.class, "Panda Gene", "The panda gene type")); paramInfos.add(new ParamInfoEnum(MushroomCow.Variant.class, "Mushroom Cow Variant", "The different variants for mushroom cows")); + + if (NmsVersion.v1_17.isSupported()) { + paramInfos.add(new ParamInfoEnum(Axolotl.Variant.class, "Axolotl Variant", "The variant of Axolotl")); + } } else { paramInfos.add(new ParamInfoEnum(Ocelot.Type.class, "Ocelot Type", "The type of ocelot")); }