Skip to content

Commit

Permalink
Close #12
Browse files Browse the repository at this point in the history
  • Loading branch information
darkevilmac committed Aug 10, 2017
1 parent 286bdd2 commit 3e6dac6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

modGroup=com.elytradev
modVersion=2
modVersion=3
modBaseName=teckle
forgeVersion=1.12.1-14.22.0.2446
mcpVersion=snapshot_20170806
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,11 @@ public void onTick(TileSortingMachine sortingMachine) {
}

coolDown = 5;
if (!sortingMachine.getPullMode().isPaused())
if (!sortingMachine.getPullMode().isPaused()) {
return;
} else if (selectorPosition < 0) {
sortingMachine.getPullMode().unpause();
}

List<SlotData> stacksToPush = sortingMachine.getStacksToPush(false);
if (stacksToPush.isEmpty()) {
Expand Down

0 comments on commit 3e6dac6

Please sign in to comment.