44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
|
package com.massivecraft.factions.cmd;
|
||
|
|
||
|
import com.massivecraft.factions.FPerm;
|
||
|
import com.massivecraft.factions.Perm;
|
||
|
import com.massivecraft.factions.cmd.arg.ARUPlayer;
|
||
|
import com.massivecraft.factions.entity.BoardColls;
|
||
|
import com.massivecraft.factions.entity.UPlayer;
|
||
|
import com.massivecraft.mcore.cmd.arg.ARBoolean;
|
||
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
||
|
|
||
|
public class CmdFactionsAccessPlayer extends CmdFactionsAccessAbstract
|
||
|
{
|
||
|
public CmdFactionsAccessPlayer()
|
||
|
{
|
||
|
this.addAliases("p", "player");
|
||
|
|
||
|
this.addRequiredArg("player");
|
||
|
this.addOptionalArg("yes/no", "toggle");
|
||
|
|
||
|
this.addRequirements(ReqHasPerm.get(Perm.ACCESS_PLAYER.node));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void innerPerform()
|
||
|
{
|
||
|
// Args
|
||
|
UPlayer uplayer = this.arg(0, ARUPlayer.getStartAny(usender));
|
||
|
if (uplayer == null) return;
|
||
|
|
||
|
Boolean newValue = this.arg(1, ARBoolean.get(), !ta.isPlayerIdGranted(uplayer.getId()));
|
||
|
if (newValue == null) return;
|
||
|
|
||
|
// FPerm
|
||
|
if (FPerm.ACCESS.has(usender, hostFaction, true)) return;
|
||
|
|
||
|
// Apply
|
||
|
ta = ta.withPlayerId(uplayer.getId(), newValue);
|
||
|
BoardColls.get().setTerritoryAccessAt(chunk, ta);
|
||
|
|
||
|
// Inform
|
||
|
this.sendAccessInfo();
|
||
|
}
|
||
|
}
|