aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util
diff options
context:
space:
mode:
authorRunakai1 <48415331+Runakai1@users.noreply.github.com>2022-10-16 15:16:51 +0200
committerGitHub <noreply@github.com>2022-10-16 15:16:51 +0200
commit4198a09827e891119101f763a341b83d29bc3a1d (patch)
tree25f8c6becd4e6aac99c382b909d744cf8eec5b5f /src/main/java/gregtech/api/util
parenta496d5e355f390b71a9c0d3e89ad31ad5ad5d11f (diff)
downloadGT5-Unofficial-4198a09827e891119101f763a341b83d29bc3a1d.tar.gz
GT5-Unofficial-4198a09827e891119101f763a341b83d29bc3a1d.tar.bz2
GT5-Unofficial-4198a09827e891119101f763a341b83d29bc3a1d.zip
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
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r--src/main/java/gregtech/api/util/GT_JubilanceMegaApiary.java23
1 files changed, 23 insertions, 0 deletions
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";
+ }
+}