mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-21 05:44:33 +00:00
SPIGOT-7520: Attribute LootTableSeed missing for generated containers with attached LootTable
This commit is contained in:
parent
d433f086d5
commit
eeb7dfc2dd
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@
|
||||||
tileentity = worldaccess.getBlockEntity(blockposition2);
|
tileentity = worldaccess.getBlockEntity(blockposition2);
|
||||||
if (tileentity != null) {
|
if (tileentity != null) {
|
||||||
- if (tileentity instanceof TileEntityLootable) {
|
- if (tileentity instanceof TileEntityLootable) {
|
||||||
+ if (wrappedAccess == worldaccess && tileentity instanceof TileEntityLootable) { // CraftBukkit - only process if don't have a transformer access (originalAccess == worldaccess)
|
+ if (structureTransformer == null && tileentity instanceof TileEntityLootable) { // CraftBukkit - only process if don't have a transformer access (Was already set above) - SPIGOT-7520: Use structureTransformer as check, so that it is the same as above
|
||||||
definedstructure_blockinfo.nbt.putLong("LootTableSeed", randomsource.nextLong());
|
definedstructure_blockinfo.nbt.putLong("LootTableSeed", randomsource.nextLong());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue