aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoKM <mcazzyman@gmail.com>2021-07-14 21:40:02 +0200
committerDoKM <mcazzyman@gmail.com>2021-07-14 21:40:02 +0200
commit095a4425bd35a78a260d659e02349d58c0507d2c (patch)
tree1b2be579518a0583361d1aeba7ee137970e604b9
parentf29c2ff69569af9d80ec7b78b9fb484f3a566c11 (diff)
downloadNotEnoughUpdates-095a4425bd35a78a260d659e02349d58c0507d2c.tar.gz
NotEnoughUpdates-095a4425bd35a78a260d659e02349d58c0507d2c.tar.bz2
NotEnoughUpdates-095a4425bd35a78a260d659e02349d58c0507d2c.zip
add specific divide size for wardrobe to eliminate missing rows
untested but should work
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
index e0cf37fb..1822f630 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java
@@ -1721,10 +1721,14 @@ public class GuiProfileViewer extends GuiScreen {
jsonInvSize = (int)Math.ceil(jsonInv.size()/9f)*9;
} else {
jsonInvSize = 9*4;
+ float divideBy = 9f;
+ if(invName.equals("wardrobe_contents")){
+ divideBy = 36f;
+ }
for(int i=9*4; i<jsonInv.size(); i++) {
JsonElement item = jsonInv.get(i);
if(item != null && item.isJsonObject()) {
- jsonInvSize = (int) (Math.ceil((i+1)/9f)*9);
+ jsonInvSize = (int) (Math.ceil((i+1)/divideBy)*(int)divideBy);
}
}
}