Skip to content

Commit

Permalink
1.5.69
Browse files Browse the repository at this point in the history
VariableSelector#loadInConstructor
  • Loading branch information
anjoismysign committed Nov 29, 2022
1 parent ec8743b commit 3a4eb51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/us/mytheria/bloblib/entities/BlobEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class BlobEditor<T> extends VariableSelector<T> implements VariableEditor
public static <T> BlobEditor<T> build(BlobInventory blobInventory, UUID builderId,
String dataType, VariableFiller<T> filler) {
return new BlobEditor<>(blobInventory, builderId,
dataType, filler);
dataType, null);
}

private BlobEditor(BlobInventory blobInventory, UUID builderId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public VariableSelector(BlobInventory blobInventory, UUID builderId,
buildInventory();
this.page = 1;
this.itemsPerPage = getSlots("White-Background").size();
loadInConstructor();
}

public void loadInConstructor() {
loadPage(page, false);
}

Expand Down

0 comments on commit 3a4eb51

Please sign in to comment.