From 4198a09827e891119101f763a341b83d29bc3a1d Mon Sep 17 00:00:00 2001 From: Runakai1 <48415331+Runakai1@users.noreply.github.com> Date: Sun, 16 Oct 2022 15:16:51 +0200 Subject: Restricting Bees to MApiary + create class (#1470) * Restricting Bees to MApiary + create class * Revert Indium (wrong bee) * SPOTLESS + new description * Adjust chances to specialty comb --- .../gregtech/api/util/GT_JubilanceMegaApiary.java | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/java/gregtech/api/util/GT_JubilanceMegaApiary.java (limited to 'src/main/java/gregtech/api/util') diff --git a/src/main/java/gregtech/api/util/GT_JubilanceMegaApiary.java b/src/main/java/gregtech/api/util/GT_JubilanceMegaApiary.java new file mode 100644 index 0000000000..f20a58c34a --- /dev/null +++ b/src/main/java/gregtech/api/util/GT_JubilanceMegaApiary.java @@ -0,0 +1,23 @@ +package gregtech.api.util; + +import forestry.api.apiculture.IAlleleBeeSpecies; +import forestry.api.apiculture.IBeeGenome; +import forestry.api.apiculture.IBeeHousing; +import forestry.api.apiculture.IJubilanceProvider; + +public class GT_JubilanceMegaApiary implements IJubilanceProvider { + + public static final GT_JubilanceMegaApiary instance = new GT_JubilanceMegaApiary(); + + protected GT_JubilanceMegaApiary() {} + + @Override + public boolean isJubilant(IAlleleBeeSpecies species, IBeeGenome genome, IBeeHousing housing) { + return false; + } + + @Override + public String getDescription() { + return "Will only be produced in mega Apiary"; + } +} -- cgit