Fix fluid testmod, add dummy init method to FluidStack (classloading 😍)

Signed-off-by: Max <maxh2709@gmail.com>
This commit is contained in:
Max
2022-05-11 00:48:57 +02:00
parent fbb1868c0e
commit aa008479a1
4 changed files with 15 additions and 2 deletions

View File

@@ -244,4 +244,8 @@ public final class FluidStack {
if (isEmpty()) return this;
return new FluidStack(getRawFluidSupplier(), amount, getTag());
}
public static void init() {
// classloading my beloved 😍
}
}