mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-12-03 16:13:30 +01:00
Finally fixed NPEs in PanelListenerManager tests (#765)
Tests failing because 'getClickedInventory()' was not defined there
This commit is contained in:
parent
492361663e
commit
673436a5b7
@ -33,7 +33,7 @@ public class PanelListenerManager implements Listener {
|
||||
|
||||
// Open the inventory panel that this player has open (they can only ever have one)
|
||||
if (openPanels.containsKey(user.getUniqueId()) &&
|
||||
openPanels.get(user.getUniqueId()).getInventory().equals(event.getClickedInventory())) {
|
||||
openPanels.get(user.getUniqueId()).getInventory().equals(event.getInventory())) {
|
||||
// Cancel the event. If they don't want it to be cancelled then the click handler(s) should
|
||||
// uncancel it. If gui was from our environment, then cancel event anyway.
|
||||
event.setCancelled(true);
|
||||
|
Loading…
Reference in New Issue
Block a user