Skip to content

Commit 54b95e0

Browse files
author
Daniel Naylor
committed
Revert "As Chunk is a part of a World, it's also a PhysicsAwareMutableBlockVolume"
* I was on the wrong branch This reverts commit c505367.
1 parent c505367 commit 54b95e0

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/org/spongepowered/api/world/chunk

1 file changed

+1
-2
lines changed

src/main/java/org/spongepowered/api/world/chunk/Chunk.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import org.spongepowered.api.util.Ticks;
3030
import org.spongepowered.api.util.annotation.DoNotStore;
3131
import org.spongepowered.api.world.World;
32-
import org.spongepowered.api.world.volume.block.PhysicsAwareMutableBlockVolume;
3332
import org.spongepowered.api.world.volume.entity.EntityVolume;
3433
import org.spongepowered.math.vector.Vector3i;
3534

@@ -41,7 +40,7 @@
4140
* <p>In Minecraft, the chunk is 16 by 16 blocks on the X and Z axes. The height
4241
* of each chunk varies between worlds.</p>
4342
*/
44-
public interface Chunk extends ProtoChunk<Chunk>, EntityVolume.Mutable<Chunk>, PhysicsAwareMutableBlockVolume<Chunk> {
43+
public interface Chunk extends ProtoChunk<Chunk>, EntityVolume.Mutable<Chunk> {
4544

4645
/**
4746
* Gets the world the chunk is in.

0 commit comments

Comments
 (0)