diff options
author | syeyoung <cyong06@naver.com> | 2021-08-28 14:59:22 +0900 |
---|---|---|
committer | syeyoung <cyong06@naver.com> | 2021-08-28 14:59:22 +0900 |
commit | e629707f3e049f14c78b0beb3e1be2ee029d9d50 (patch) | |
tree | 3dd4fff2f7c8596b9daf378dd6908c06a9d1bb6f /src/main | |
parent | 9d2e69c4576ad723969a51ddaaaeec0bc6e56e49 (diff) | |
download | Skyblock-Dungeons-Guide-e629707f3e049f14c78b0beb3e1be2ee029d9d50.tar.gz Skyblock-Dungeons-Guide-e629707f3e049f14c78b0beb3e1be2ee029d9d50.tar.bz2 Skyblock-Dungeons-Guide-e629707f3e049f14c78b0beb3e1be2ee029d9d50.zip |
- Fix cursor issue after opening partyfinder gui
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/kr/syeyoung/dungeonsguide/features/impl/party/customgui/GuiCustomPartyFinder.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/party/customgui/GuiCustomPartyFinder.java b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/party/customgui/GuiCustomPartyFinder.java index bf297b93..bac1db98 100644 --- a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/party/customgui/GuiCustomPartyFinder.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/party/customgui/GuiCustomPartyFinder.java @@ -67,5 +67,6 @@ public class GuiCustomPartyFinder extends MGui { public void onGuiClosed() { guiChest.onGuiClosed(); guiChest = null; + super.onGuiClosed(); } } |