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

@ -233,7 +233,7 @@ public class BukkitWorld extends LocalWorld {
@Nullable
@Override
public com.sk89q.worldedit.entity.Entity createEntity(com.sk89q.worldedit.util.Location location, BaseEntity entity) {
public com.sk89q.worldedit.entity.Entity createEntity(Vector position, BaseEntity entity) {
throw new UnsupportedOperationException("Not implemented yet");
}