Updated to Sponge 4.0

This commit is contained in:
Wyatt Childers 2016-03-09 21:33:20 -05:00
parent 0fd603bbd8
commit 04cf831a33
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
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'
}

View File

@ -137,7 +137,7 @@ public abstract class SpongeWorld extends AbstractWorld {
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 abstract class SpongeWorld extends AbstractWorld {
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 abstract class SpongeWorld extends AbstractWorld {
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);
}
}