49 lines
1.6 KiB
Java
49 lines
1.6 KiB
Java
/*
|
|
* Copyright (C) 2011-2014 lishid. All rights reserved.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.lishid.openinv.internal.craftbukkit;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
import com.lishid.openinv.OpenInv;
|
|
import com.lishid.openinv.Permissions;
|
|
import com.lishid.openinv.internal.IInventoryAccess;
|
|
|
|
//Volatile
|
|
import net.minecraft.server.*;
|
|
import org.bukkit.craftbukkit.inventory.*;
|
|
|
|
public class InventoryAccess implements IInventoryAccess {
|
|
public boolean check(Inventory inventory, HumanEntity player) {
|
|
IInventory inv = ((CraftInventory) inventory).getInventory();
|
|
|
|
if (inv instanceof SpecialPlayerInventory) {
|
|
if (!OpenInv.hasPermission(player, Permissions.PERM_EDITINV)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
else if (inv instanceof SpecialEnderChest) {
|
|
if (!OpenInv.hasPermission(player, Permissions.PERM_EDITENDER)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|