geforkt von Mirrors/FastAsyncWorldEdit
Fixed an issue where item spawns were not given a proper cause, which lead to things like the super pickaxe not working
Dieser Commit ist enthalten in:
Ursprung
28d45870e2
Commit
e1bb00e665
@ -205,7 +205,7 @@ public abstract class SpongeWorld extends AbstractWorld {
|
|||||||
if (optItem.isPresent()) {
|
if (optItem.isPresent()) {
|
||||||
org.spongepowered.api.entity.Entity entity = optItem.get();
|
org.spongepowered.api.entity.Entity entity = optItem.get();
|
||||||
entity.offer(Keys.REPRESENTED_ITEM, SpongeWorldEdit.toSpongeItemStack(item).createSnapshot());
|
entity.offer(Keys.REPRESENTED_ITEM, SpongeWorldEdit.toSpongeItemStack(item).createSnapshot());
|
||||||
getWorld().spawnEntity(entity, Cause.source(SpongeWorldEdit.container()).build());
|
getWorld().spawnEntity(entity, ENTITY_SPAWN_CAUSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren