Remove stub injector methods

This commit is contained in:
Jesse Boyd
2018-08-13 02:36:39 +10:00
parent fa06ff357e
commit e7c27b08bf
124 changed files with 241 additions and 411 deletions

View File

@ -127,13 +127,13 @@ public class NullWorld extends AbstractWorld {
}
@Override
public LazyBlock getLazyBlock(Vector position) {
return new LazyBlock(getBlock(position), this, position);
public BlockState getLazyBlock(Vector position) {
return getBlock(position);
}
@Override
public BaseBlock getFullBlock(Vector position) {
return new BaseBlock(getBlock(position));
public BlockState getFullBlock(Vector position) {
return getBlock(position);
}
@Override