Have Extent.createEntity() take a Vector rather than a Location.

This commit is contained in:
sk89q
2014-07-10 02:58:04 -07:00
parent e5959383c5
commit bd0e20e8a7
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(com.sk89q.worldedit.util.Location location, BaseEntity entity) {
return world.createEntity(location, entity);
public Entity createEntity(Vector position, BaseEntity entity) {
return world.createEntity(position, entity);
}
/**