You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The random_sequence field is expected for loot tables produced by data generation, but instead, it is not present. As a result, generated loot tables use the world random rather than a loot table-specific random sequence.
Compare the implementations of the Fabric API FabricLootTableProviderImpl#run and vanilla LootTableProvider#run methods. The Fabric API implementation does not call builder.randomSequenceId(identifier) when accepting each loot table builder from the provider, leading to this issue.
As a workaround, the following code can be added to the end of FabricBlockLootTableProvider#generate implementations in individual mods:
The
random_sequence
field is expected for loot tables produced by data generation, but instead, it is not present. As a result, generated loot tables use the world random rather than a loot table-specific random sequence.Compare the implementations of the Fabric API
FabricLootTableProviderImpl#run
and vanillaLootTableProvider#run
methods. The Fabric API implementation does not callbuilder.randomSequenceId(identifier)
when accepting each loot table builder from the provider, leading to this issue.As a workaround, the following code can be added to the end of
FabricBlockLootTableProvider#generate
implementations in individual mods:The text was updated successfully, but these errors were encountered: