Fix #1915
This commit is contained in:
parent
5e767e97f0
commit
8ba6c25fc5
1 changed files with 3 additions and 6 deletions
|
@ -104,18 +104,15 @@ public class CableBlockEntity extends BlockEntity
|
|||
@Override
|
||||
public void fromTag(CompoundTag compound) {
|
||||
super.fromTag(compound);
|
||||
if (compound.contains("CableBlockEntity")) {
|
||||
energy = compound.getCompound("CableBlockEntity").getInt("power");
|
||||
if (compound.contains("energy")) {
|
||||
energy = compound.getDouble("energy");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public CompoundTag toTag(CompoundTag compound) {
|
||||
super.toTag(compound);
|
||||
if (energy > 0) {
|
||||
CompoundTag data = new CompoundTag();
|
||||
compound.put("CableBlockEntity", data);
|
||||
}
|
||||
compound.putDouble("energy", energy);
|
||||
return compound;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue