3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

Updated to Sponge 4.0

Dieser Commit ist enthalten in:
Wyatt Childers 2016-03-09 21:33:20 -05:00
Ursprung 0fd603bbd8
Commit 04cf831a33
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -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'
}

Datei anzeigen

@ -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);
}
}