Skip to content

Commit

Permalink
fix: 🐛 Fix at what level restock slot acronyms render now that the wh…
Browse files Browse the repository at this point in the history
…ole sophisticated inventory renders on standard vanilla level and it started rendering filter stacks above the acronyms
  • Loading branch information
P3pp3rF1y committed Sep 6, 2023
1 parent bb534eb commit 441ff75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.daemon=false

mod_id=sophisticatedbackpacks
mod_group_id=sophisticatedbackpacks
mod_version=3.18.59
mod_version=3.18.60
sonar_project_key=sophisticatedbackpacks:SophisticatedBackpacks
github_package_url=https://maven.pkg.github.com/P3pp3rF1y/SophisticatedBackpacks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void updateTargetSlotTooltip(int mouseX, int mouseY) {
private void renderTargetSlotAcronyms(GuiGraphics guiGraphics) {
PoseStack poseStack = guiGraphics.pose();
poseStack.pushPose();
poseStack.translate(0, 0, 100);
poseStack.translate(0, 0, 300);
getContainer().getSlots().forEach(slot -> {
if (!slot.getItem().isEmpty()) {
int slotIndex = slot.getSlotIndex();
Expand Down

0 comments on commit 441ff75

Please sign in to comment.