Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Updated to Sponge 4.0
Dieser Commit ist enthalten in:
Ursprung
0fd603bbd8
Commit
04cf831a33
@ -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'
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren