Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Fixed an issue where an entity could fail to spawn, and this would end the edit
Dieser Commit ist enthalten in:
Ursprung
61cba3ce07
Commit
124308c4ce
@ -68,7 +68,7 @@ public class ChangeSetExtent extends AbstractDelegateExtent {
|
||||
@Override
|
||||
public Entity createEntity(Location location, BaseEntity state) {
|
||||
Entity entity = super.createEntity(location, state);
|
||||
if (state != null) {
|
||||
if (entity != null) {
|
||||
changeSet.add(new EntityCreate(location, state, entity));
|
||||
}
|
||||
return entity;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren