Skip to content

Commit

Permalink
Fix mistake in the push command
Browse files Browse the repository at this point in the history
This explains why things weren't working right >.>
  • Loading branch information
mcmonkey4eva committed Dec 12, 2014
1 parent 33253eb commit aec11c8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -248,7 +248,7 @@ public void run() {

// Check if the entity has collided with something
// using the most basic possible calculation
if (!lastEntity.getLocation().add(v3).getBlock().getType().isSolid()) {
if (lastEntity.getLocation().add(newVel).getBlock().getType().isSolid()) {
runs = maxTicks;
}

Expand Down

0 comments on commit aec11c8

Please sign in to comment.