Fixed movement upgrade stat tracking.
This commit is contained in:
parent
8b0756e9da
commit
1b6e3442ae
|
@ -75,6 +75,9 @@ public class StatTrackerMovement extends StatTracker
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lastPosX.put(player, player.posX);
|
||||||
|
lastPosZ.put(player, player.posZ);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
package WayofTime.bloodmagic.tile.routing;
|
||||||
|
|
||||||
|
public class TileInputRoutingNode extends TileRoutingNode
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
package WayofTime.bloodmagic.tile.routing;
|
||||||
|
|
||||||
|
public class TileOutputRoutingNode extends TileRoutingNode
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue