Put the summary of the bug you're having here
What I expected to happen was...:
i expected to be able to place ominous vaults the way you can place normal vaults
What actually happened was...:
ominous vaults cannot be found in the creative menu, using /give, using /setblock, or by using the pick block function
Steps to Reproduce:
1. search ominous vault in the creative menu
2. type /give @s ominous_vault
3. type /setblock ~ ~ ~ ominous_vault
4. find or spawn in a trial chambers and middle click on an ominous vault
Linked issues
Comments 4
Thank you for your report!
We're tracking this issue in MC-270095, so this ticket is being resolved and linked as a duplicate.
That ticket has already been resolved as working as intended, which means this is not considered a bug and won't be fixed. Please do not leave a comment on the linked ticket.
If you haven't already, you might like to make use of the search feature to see if the issue has already been mentioned.
Quick Links:
📓 Bug Tracker Guidelines – 💬 Community Support – 📧 Mojang Support (Technical Issues) – 📧 Microsoft Support (Account Issues)
📓 Project Summary – ✍️ Feedback and Suggestions – 📖 Game Wiki
The setblock command is /setblock ~ ~ ~ minecraft:vault[ominous=true]
; to get it through pick block you have to also use CTRL, as the Ominous Vault is not a separate block, instead being a different block state of the Vault.
In addition to what @unknown said, you also run the command below to get an Ominous Vault item directly, but it will show up as a Vault, since an Ominous Vault is a block state of the Vault:
/give @s minecraft:vault[minecraft:block_state={ominous:"true"}]
This may be a bit buggy; see MC-270062. A workaround is to run this command (from @unknown):
/setblock ~ ~ ~ vault[ominous=true]{config:{key_item:{count:1,id:"ominous_trial_key"},loot_table:"minecraft:chests/trial_chambers/reward_ominous"}}
Ominous vaults are a block state of the Vault, not a seperate block.