diff options
author | Runakai1 <48415331+Runakai1@users.noreply.github.com> | 2023-05-22 15:59:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 15:59:34 +0200 |
commit | cc95112a0f37555b399048000b74321195ecbb76 (patch) | |
tree | ac09f9a92612347638b3801c5410dd128f315cbb /src/main/java/gregtech/common/items | |
parent | b7b378c1dd4f68110de882647061d3a749eb1a47 (diff) | |
download | GT5-Unofficial-cc95112a0f37555b399048000b74321195ecbb76.tar.gz GT5-Unofficial-cc95112a0f37555b399048000b74321195ecbb76.tar.bz2 GT5-Unofficial-cc95112a0f37555b399048000b74321195ecbb76.zip |
Nerf Sunnarium Bee, Add Endstone to Endstone Bee (#2014)
* Nerf Sunnarium Bee, Add Endstone to Endstone Bee
Previous sunnarium:
glowstone 40%
sunnarium 20%
now:
glowstone 30%
sunnarium 5%
Added 4 End Stone to comb centrifuging of End stone bee
* spotlessApply (#2015)
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/items')
-rw-r--r-- | src/main/java/gregtech/common/items/ItemComb.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/items/ItemComb.java b/src/main/java/gregtech/common/items/ItemComb.java index 5fae1ae090..9a8adb5cab 100644 --- a/src/main/java/gregtech/common/items/ItemComb.java +++ b/src/main/java/gregtech/common/items/ItemComb.java @@ -1220,8 +1220,9 @@ public class ItemComb extends Item implements IGT_ItemWithMaterialRenderer { addCentrifugeToItemStack( CombType.ENDDUST, new ItemStack[] { GT_ModHandler.getModItem(MagicBees.ID, "wax", 1L, 0), - GT_Bees.propolis.getStackForType(PropolisType.End), GT_Bees.drop.getStackForType(DropType.ENDERGOO), }, - new int[] { 20 * 100, 15 * 100, 10 * 100 }, + GT_Bees.propolis.getStackForType(PropolisType.End), GT_Bees.drop.getStackForType(DropType.ENDERGOO), + Materials.Endstone.getBlocks(4) }, + new int[] { 20 * 100, 15 * 100, 10 * 100, 100 * 100 }, Voltage.HV); addCentrifugeToItemStack( CombType.STARDUST, |