hollow-cube / minestom-ce

1.20.4 Lightweight Minecraft server
https://minestom.net
Apache License 2.0
106 stars 35 forks source link

InstanceContainer#copy() does not copy tags #112

Closed zax71 closed 10 months ago

zax71 commented 10 months ago
// masterInstance is an InstanceContainer set elsewhere

masterInstance.setTag(Tag.Boolean("exampleTag"), true);

Instance childInstance = selectedMap.copy();
logger.info(childInstance.getTag(Tag.Boolean("exampleTag")) + " <- This tag will not exist & thus error");