- Crystalite Elytra recipe;
- Elytras speed tweak; - Addition Infusion structure fix
This commit is contained in:
parent
030ede58d3
commit
ddc8edee67
5 changed files with 48 additions and 5 deletions
|
@ -57,6 +57,8 @@ public class InfusionRitual implements Container {
|
|||
BlockEntity catalystEntity = world.getBlockEntity(checkPos);
|
||||
if (catalystEntity instanceof PedestalBlockEntity) {
|
||||
catalysts[i] = (PedestalBlockEntity) catalystEntity;
|
||||
} else {
|
||||
catalysts[i] = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -217,6 +219,10 @@ public class InfusionRitual implements Container {
|
|||
}
|
||||
}
|
||||
|
||||
public void markDirty() {
|
||||
this.isDirty = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean stillValid(Player player) {
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue