Fix several bugs with fluids (null vs. EMPTY).

Fix IAEFluidStack NBT serialization.
Fix fluid export bus not exporting.
Fix fluid formation planes.
Fix fluid annihilation planes.
This commit is contained in:
Sebastian Hartte
2020-06-20 00:45:47 +02:00
parent 2458f9c890
commit 2f8cffdd93
18 changed files with 106 additions and 91 deletions
+1 -1
View File
@@ -443,7 +443,7 @@ public class Platform {
}
public static String getModId(final IAEFluidStack fs) {
if (fs == null || fs.getFluidStack() == null) {
if (fs == null || fs.getFluidStack().isEmpty()) {
return "** Null";
}