2727import com .sk89q .worldedit .entity .Entity ;
2828import com .sk89q .worldedit .extent .Extent ;
2929import com .sk89q .worldedit .internal .util .LogManagerCompat ;
30- import com .sk89q .worldedit .internal .wna .WNASharedImpl ;
3130import com .sk89q .worldedit .math .BlockVector3 ;
3231import com .sk89q .worldedit .math .Vector3 ;
3332import com .sk89q .worldedit .regions .CuboidRegion ;
3433import com .sk89q .worldedit .regions .Region ;
3534import com .sk89q .worldedit .sponge .internal .NbtAdapter ;
36- import com .sk89q .worldedit .sponge .internal .SpongeNativeWorld ;
3735import com .sk89q .worldedit .util .Location ;
3836import com .sk89q .worldedit .util .SideEffect ;
3937import com .sk89q .worldedit .util .SideEffectSet ;
@@ -104,7 +102,6 @@ public final class SpongeWorld extends AbstractWorld {
104102 private static final Logger LOGGER = LogManagerCompat .getLogger ();
105103
106104 private final WeakReference <ServerWorld > worldRef ;
107- private final SpongeNativeWorld worldNativeAccess ;
108105
109106 /**
110107 * Construct a new world.
@@ -114,7 +111,6 @@ public final class SpongeWorld extends AbstractWorld {
114111 SpongeWorld (ServerWorld world ) {
115112 checkNotNull (world );
116113 this .worldRef = new WeakReference <>(world );
117- this .worldNativeAccess = new SpongeNativeWorld (new WeakReference <>((ServerLevel ) world ));
118114 }
119115
120116 /**
@@ -233,8 +229,6 @@ public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 position, B
233229 public Set <SideEffect > applySideEffects (BlockVector3 position , com .sk89q .worldedit .world .block .BlockState previousType , SideEffectSet sideEffectSet ) throws WorldEditException {
234230 checkNotNull (position );
235231
236- WNASharedImpl .applySideEffects (worldNativeAccess , position , previousType , sideEffectSet );
237-
238232 return Sets .intersection (
239233 SpongeWorldEdit .inst ().getInternalPlatform ().getSupportedSideEffects (),
240234 sideEffectSet .getSideEffectsToApply ()
0 commit comments