From 380cb0ccf3c582f5700a54f65db74c3bb69e7d6a Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Thu, 6 Jul 2023 09:56:33 +1000 Subject: Add some rift stuff to PV (#749) --- .../moulberry/notenoughupdates/profileviewer/CollectionsPage.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java index da90843a..2d4e7250 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java @@ -402,6 +402,9 @@ public class CollectionsPage extends GuiProfileViewerPage { ItemStack stack = null; Iterator items = ProfileViewer.getCollectionCatToCollectionMap().keySet().iterator(); switch (keyCode) { + case Keyboard.KEY_6: + case Keyboard.KEY_NUMPAD6: + items.next(); case Keyboard.KEY_5: case Keyboard.KEY_NUMPAD5: items.next(); -- cgit