mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
fix compat shim incorrectly subscribing receiving tanks
This commit is contained in:
parent
6db42e6d4b
commit
f00f2c7ca3
@ -18,7 +18,7 @@ public interface IFluidStandardReceiver extends IFluidStandardReceiverMK2 {
|
|||||||
|
|
||||||
public default void subscribeToAllAround(FluidType type, World world, int x, int y, int z) {
|
public default void subscribeToAllAround(FluidType type, World world, int x, int y, int z) {
|
||||||
for(ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) {
|
for(ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) {
|
||||||
trySubscribe(type, world, x, y, z, dir);
|
trySubscribe(type, world, x + dir.offsetX, y + dir.offsetY, z + dir.offsetZ, dir);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user