- Crystalite Elytra recipe;

- Elytras speed tweak;
- Addition Infusion structure fix
This commit is contained in:
Aleksey 2021-06-10 19:54:03 +03:00
parent 030ede58d3
commit ddc8edee67
5 changed files with 48 additions and 5 deletions

View file

@ -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;