3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

Fixed an issue where an entity could fail to spawn, and this would end the edit

Dieser Commit ist enthalten in:
Wyatt Childers 2016-02-05 19:08:26 -05:00
Ursprung 61cba3ce07
Commit 124308c4ce

Datei anzeigen

@ -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;