[BUG] Unable to add botany pots to tags for projecte/gag blacklists - block entity type?
muggleorwizard opened this issue ยท 0 comments
Minecraft Version
1.20.1
Mod Version
13.0.40
Mod Loader
Forge
What environment are you running the mod in?
Client
Issue Description
When adding botany pots to the tag block_entity_type:projecte:blacklist/time_watch or block_entity_type:gag:do_not_accelerate, then it shows in-game as having that tag via the tooltips, but it is still affected by the watch of flowing time or the temporal pouch. Are botany pots not block entities? I also tested by adding the block tags to the botany pots instead, with no effect.
KubeJS script (does not work):
ServerEvents.tags('block_entity_type', event => {
event.add('projecte:blacklist/time_watch', 'botanypots:terracotta_hopper_botany_pot')
})
Working KubeJS script for an item not in botany pots mod:
ServerEvents.tags('block_entity_type', event => {
event.add('projecte:blacklist/time_watch', 'enderio:sag_mill')
})