This commit is contained in:
Anuken
2024-01-12 14:20:28 -05:00
parent a2e5fbdedb
commit 1d3736cf82
2 changed files with 6 additions and 1 deletions

View File

@@ -61,6 +61,11 @@ public class StackRouter extends DuctRouter{
if((current == null || items.get(current) == 0) && items.total() > 0){
current = items.first();
}
if(items.empty()){
unloading = false;
current = null;
}
}
@Override