Replies: 1 comment
-
Very far future, but will be resolved by #8711 . |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem?
I'm writing a plugin to scan my world for cheated/unusual stuff. I intend to scan everything, like blocks, entities, inventories,...
I try my best to look into entity/tileentity inventories, inventories in items (shulker box),...
I know that spawner blocks and spawner eggs can have custom nbt that would be copied into the spawned entity (like pre-filled custom name, inventory content,... ).
I'm not able to find API that provides the entity data (in
SpawnEggMeta
for the item meta of spawner eggs, andCreatureSpawner
block state for the spawner block), except theEntityType
.Describe the solution you'd like.
Describe alternatives you've considered.
Other
In addition to solve the initial issue, the presented solution would also provide a way to programmatically spawn an entity based on a spawner egg item or a spawner block.
EDIT: it would also be nice to have this functionality extended for:
ArmorStandMeta
) and Aquatic mob buckets (TropicalFishBucketMeta
,AxolotlBucketMeta
) that can all have a EntityTag tag in their NBT.EntityBlockStorage
) with the possibility to list the entities without having to release them (with releaseEntities() method)Beta Was this translation helpful? Give feedback.
All reactions