mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Updated to Sponge 4.0
This commit is contained in:
parent
0fd603bbd8
commit
04cf831a33
@ -18,7 +18,7 @@
|
||||
|
||||
dependencies {
|
||||
compile project(':worldedit-core')
|
||||
compile 'org.spongepowered:spongeapi:3.1.0-SNAPSHOT'
|
||||
compile 'org.spongepowered:spongeapi:4.+'
|
||||
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
|
||||
}
|
||||
|
||||
|
@ -137,7 +137,7 @@ public boolean setBlock(Vector position, BaseBlock block, boolean notifyAndLight
|
||||
BlockState newState = getBlockState(block);
|
||||
|
||||
try {
|
||||
world.setBlock(pos, newState, notifyAndLight, Cause.of(SpongeWorldEdit.container()));
|
||||
world.setBlock(pos, newState, notifyAndLight, Cause.source(SpongeWorldEdit.container()).build());
|
||||
} catch (PositionOutOfBoundsException ex) {
|
||||
return false;
|
||||
}
|
||||
@ -204,7 +204,7 @@ public void dropItem(Vector position, BaseItemStack item) {
|
||||
if (optItem.isPresent()) {
|
||||
org.spongepowered.api.entity.Entity entity = optItem.get();
|
||||
entity.offer(Keys.REPRESENTED_ITEM, SpongeWorldEdit.toSpongeItemStack(item).createSnapshot());
|
||||
getWorld().spawnEntity(entity, Cause.of(SpongeWorldEdit.container()));
|
||||
getWorld().spawnEntity(entity, Cause.source(SpongeWorldEdit.container()).build());
|
||||
}
|
||||
}
|
||||
|
||||
@ -285,7 +285,7 @@ public Entity createEntity(Location location, BaseEntity entity) {
|
||||
new Vector3d(dir.getX(), dir.getY(), dir.getZ())
|
||||
);
|
||||
|
||||
if (world.spawnEntity(newEnt, Cause.of(SpongeWorldEdit.container()))) {
|
||||
if (world.spawnEntity(newEnt, Cause.source(SpongeWorldEdit.container()).build())) {
|
||||
return new SpongeEntity(newEnt);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user