Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Unable to farm Nether Quartz Bees inside a Apiary #26

Open
TotallyMad97 opened this issue Jul 16, 2021 · 3 comments
Open

Unable to farm Nether Quartz Bees inside a Apiary #26

TotallyMad97 opened this issue Jul 16, 2021 · 3 comments
Assignees
Labels
bug Something isn't working

Comments

@TotallyMad97
Copy link

Bug description
There is no way to get any yield from the Nether Quartz Bees of Resourceful Bees, since they require Nether Warts as flowerblock. This however is not possible inside an apiary, because Soul Sand is not a valid Apiary-Block

Expected behavior
The resourcefulbees:valid_apiary Tag needs to be added to Soulsand in order for Nether Quartz Bees to work inside an apiary

Screenshots
Bee Flower for Nether Quartz Bee
image

Soulsand missing resourcefulbees:valid_apiary Tag
image

@TotallyMad97 TotallyMad97 added the bug Something isn't working label Jul 16, 2021
@rxiv
Copy link

rxiv commented Jul 22, 2021

Fixed this by adding a tags.zs file - for anyone looking for a temp fix till the pack is updated. Also added some nether themed blocks


import crafttweaker.api.tag.MCTag;

var VB = tag:blocks:resourcefulbees:valid_apiary;

VB.add(block:minecraft:soul_sand);
VB.add(block:quark:blackstone_bricks);
VB.add(block:minecraft:blackstone);
VB.add(block:minecraft:nether_bricks);

@MrAleSoave
Copy link

I solved this problem by changing the flower of the nether quartz bee from nether wart from poppy

@Ralsch
Copy link

Ralsch commented Jun 22, 2022

The above script from rxiv didn't work for me. After trying to post the correct script I noticed that "<" and ">" get deleted if not escaped.
So here is the script, which works for me on my server:

import crafttweaker.api.tag.MCTag;

val tag = <tag:blocks:resourcefulbees:valid_apiary>;

tag.add(<block:minecraft:soul_sand>);
tag.add(<block:quark:blackstone_bricks>);
tag.add(<block:minecraft:blackstone>);
tag.add(<block:minecraft:nether_bricks>);

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants