and now for the boring part

This commit is contained in:
Boblet 2025-02-25 16:56:48 +01:00
parent 06caf11654
commit fd500f8a98
3 changed files with 19 additions and 2 deletions

View File

@ -16,11 +16,11 @@ import net.minecraft.world.World;
*
* @author hbm
*/
@Deprecated public class Nodespace {
public class Nodespace {
public static final PowerProvider THE_POWER_PROVIDER = new PowerProvider();
public static PowerNode getNode(World world, int x, int y, int z) {
@Deprecated public static PowerNode getNode(World world, int x, int y, int z) {
return (PowerNode) UniNodespace.getNode(world, x, y, z, THE_POWER_PROVIDER);
}

View File

@ -0,0 +1,17 @@
package api.hbm.fluid;
import com.hbm.uninos.NodeNet;
public class FluidNet extends NodeNet { // yeah i don't feel like it, gonna do that shit tomorrow or sth
public long tracker = 0L;
protected static int timeout = 3_000;
@Override public void resetTrackers() { this.tracker = 0; }
@Override
public void update() {
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB