mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
fixed the altar not accepting items that require catalysts from players in multiplayer
Closes #30
This commit is contained in:
parent
f6bd264b99
commit
8fba5c7f90
1 changed files with 12 additions and 12 deletions
|
@ -66,15 +66,7 @@ public class TileEntityNatureAltar extends TileEntityImpl implements ITickable {
|
|||
public void update() {
|
||||
Random rand = this.world.rand;
|
||||
|
||||
if (!this.world.isRemote) {
|
||||
if (this.world.getTotalWorldTime() % 40 == 0) {
|
||||
boolean fine = Multiblocks.ALTAR.isComplete(this.world, this.pos);
|
||||
if (fine != this.structureFine) {
|
||||
this.structureFine = fine;
|
||||
this.sendToClients();
|
||||
}
|
||||
|
||||
if (this.structureFine) {
|
||||
int index = 0;
|
||||
for (int x = -2; x <= 2; x += 4) {
|
||||
for (int z = -2; z <= 2; z += 4) {
|
||||
|
@ -85,6 +77,14 @@ public class TileEntityNatureAltar extends TileEntityImpl implements ITickable {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!this.world.isRemote) {
|
||||
if (this.world.getTotalWorldTime() % 40 == 0) {
|
||||
boolean fine = Multiblocks.ALTAR.isComplete(this.world, this.pos);
|
||||
if (fine != this.structureFine) {
|
||||
this.structureFine = fine;
|
||||
this.sendToClients();
|
||||
}
|
||||
}
|
||||
|
||||
if (this.structureFine) {
|
||||
|
|
Loading…
Reference in a new issue