1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 14:23:09 +02:00

Revert "/me crashes ementalo's face for making the client crash."

This reverts commit 95a6008941.

And fix the original bug.
This commit is contained in:
KHobbits
2012-05-06 23:30:55 +01:00
parent e242b794d1
commit 3f119b2a04

View File

@@ -417,7 +417,9 @@ public class EssentialsPlayerListener implements Listener
if (event.getView().getTopInventory().getType() == InventoryType.PLAYER)
{
final User user = ess.getUser(event.getWhoClicked());
if (user.isInvSee() && !user.isAuthorized("essentials.invsee.modify"))
final User invOwner = ess.getUser(event.getView().getPlayer());
if (user.isInvSee() && (!user.isAuthorized("essentials.invsee.modify")
|| invOwner.isAuthorized("essentials.invsee.preventmodify")))
{
event.setCancelled(true);
}