Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
fix requester only exporting from first slot
Browse files Browse the repository at this point in the history
  • Loading branch information
rlnt committed Jun 5, 2022
1 parent 41138f1 commit e2cd257
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class ExportState implements IProgressionState {

@Override
public IProgressionState handle(RequesterEntity owner, int slot) {
var storage = owner.getStorageManager().get(0);
var storage = owner.getStorageManager().get(slot);
if (storage.getItemType() == null) {
return IProgressionState.IDLE;
}
Expand Down

0 comments on commit e2cd257

Please sign in to comment.