Revert Extent.createEntity() taking a Vector.

This commit is contained in:
sk89q
2014-07-10 14:50:40 -07:00
parent d50cd89005
commit c564278dd6
9 changed files with 21 additions and 21 deletions

View File

@ -589,8 +589,8 @@ public class EditSession implements Extent {
@Override
@Nullable
public Entity createEntity(Vector position, BaseEntity entity) {
return world.createEntity(position, entity);
public Entity createEntity(com.sk89q.worldedit.util.Location location, BaseEntity entity) {
return world.createEntity(location, entity);
}
/**