mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
Fix crash with composters
By: md_5 <git@md-5.net>
This commit is contained in:
parent
fb04a1aa50
commit
86bf456dfd
1 changed files with 3 additions and 7 deletions
|
@ -26,6 +26,7 @@ import net.minecraft.server.ParticleParam;
|
|||
import net.minecraft.server.SoundCategory;
|
||||
import net.minecraft.server.SoundEffect;
|
||||
import net.minecraft.server.TickList;
|
||||
import net.minecraft.server.TickListEmpty;
|
||||
import net.minecraft.server.TileEntity;
|
||||
import net.minecraft.server.WorldBorder;
|
||||
import net.minecraft.server.WorldData;
|
||||
|
@ -40,12 +41,12 @@ public class DummyGeneratorAccess implements GeneratorAccess {
|
|||
|
||||
@Override
|
||||
public TickList<Block> getBlockTickList() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
return TickListEmpty.b();
|
||||
}
|
||||
|
||||
@Override
|
||||
public TickList<FluidType> getFluidTickList() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
return TickListEmpty.b();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -192,9 +193,4 @@ public class DummyGeneratorAccess implements GeneratorAccess {
|
|||
public boolean a(BlockPosition blockposition, boolean flag, Entity entity, int i) {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public long ab() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue