mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-24 12:38:35 +01:00
Compare commits
No commits in common. "d8122ae7e27729df911c844e44bb5c0349e28963" and "e9b38d0df5aa8de67332fac24bb4126ec1be8bd2" have entirely different histories.
d8122ae7e2
...
e9b38d0df5
3 changed files with 1 additions and 10 deletions
|
@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
|
|||
apply plugin: 'eclipse'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
version = '1.9.4'
|
||||
version = '1.9.3'
|
||||
group = 'de.ellpeck.prettypipes' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
archivesBaseName = 'PrettyPipes'
|
||||
|
||||
|
|
|
@ -253,10 +253,6 @@ public class PipeNetwork implements ICapabilitySerializable<CompoundNBT>, GraphL
|
|||
return tile;
|
||||
}
|
||||
|
||||
public void uncachePipe(BlockPos pos) {
|
||||
this.tileCache.remove(pos);
|
||||
}
|
||||
|
||||
public List<Pair<BlockPos, ItemStack>> getCurrentlyCrafting(BlockPos node, ItemEquality... equalityTypes) {
|
||||
this.startProfile("get_currently_crafting");
|
||||
List<Pair<BlockPos, ItemStack>> items = new ArrayList<>();
|
||||
|
|
|
@ -89,11 +89,6 @@ public class PipeTileEntity extends TileEntity implements INamedContainerProvide
|
|||
super(type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onChunkUnloaded() {
|
||||
PipeNetwork.get(this.world).uncachePipe(this.pos);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CompoundNBT write(CompoundNBT compound) {
|
||||
compound.put("modules", this.modules.serializeNBT());
|
||||
|
|
Loading…
Reference in a new issue