Fixed a bug where restricting Output Hatches caused severe log spam (#1299)
This commit is contained in:
parent
d592d19322
commit
5fc136166e
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class GT_MetaTileEntity_Hatch_Output extends GT_MetaTileEntity_Hatch {
|
|||
public void saveNBTData(NBTTagCompound aNBT) {
|
||||
super.saveNBTData(aNBT);
|
||||
aNBT.setByte("mMode", mMode);
|
||||
aNBT.setString("lockedFluidName", lockedFluidName);
|
||||
aNBT.setString("lockedFluidName", lockedFluidName == null ? "" : lockedFluidName);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue