Fixed movement upgrade stat tracking.

This commit is contained in:
WayofTime 2016-01-12 12:38:51 -05:00
parent 8b0756e9da
commit 1b6e3442ae
3 changed files with 15 additions and 0 deletions

View file

@ -75,6 +75,9 @@ public class StatTrackerMovement extends StatTracker
return true;
}
lastPosX.put(player, player.posX);
lastPosZ.put(player, player.posZ);
return false;
}

View file

@ -0,0 +1,6 @@
package WayofTime.bloodmagic.tile.routing;
public class TileInputRoutingNode extends TileRoutingNode
{
}

View file

@ -0,0 +1,6 @@
package WayofTime.bloodmagic.tile.routing;
public class TileOutputRoutingNode extends TileRoutingNode
{
}