diff options
| author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-07-06 09:56:33 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-06 09:56:33 +1000 |
| commit | 380cb0ccf3c582f5700a54f65db74c3bb69e7d6a (patch) | |
| tree | 52eae0f672cf04773c141f66e55313e9ba7fc605 /src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java | |
| parent | 3aa6d8ce069902f81a341ccb5d33fc76f7274935 (diff) | |
| download | notenoughupdates-380cb0ccf3c582f5700a54f65db74c3bb69e7d6a.tar.gz notenoughupdates-380cb0ccf3c582f5700a54f65db74c3bb69e7d6a.tar.bz2 notenoughupdates-380cb0ccf3c582f5700a54f65db74c3bb69e7d6a.zip | |
Add some rift stuff to PV (#749)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CollectionsPage.java | 3 |
1 files changed, 3 insertions, 0 deletions
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<ItemStack> 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(); |
