2013-04-29 10:23:39 +02:00
|
|
|
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;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.arg.ARBoolean;
|
|
|
|
import com.massivecraft.massivecore.cmd.req.ReqHasPerm;
|
2013-04-29 10:23:39 +02:00
|
|
|
|
|
|
|
public class CmdFactionsAccessPlayer extends CmdFactionsAccessAbstract
|
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-29 10:23:39 +02:00
|
|
|
public CmdFactionsAccessPlayer()
|
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// Aliases
|
2013-04-29 10:23:39 +02:00
|
|
|
this.addAliases("p", "player");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Args
|
2013-04-29 10:23:39 +02:00
|
|
|
this.addRequiredArg("player");
|
|
|
|
this.addOptionalArg("yes/no", "toggle");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Requirements
|
2013-04-29 10:23:39 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.ACCESS_PLAYER.node));
|
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-29 10:23:39 +02:00
|
|
|
@Override
|
|
|
|
public void innerPerform()
|
|
|
|
{
|
|
|
|
// Args
|
2014-07-31 16:42:47 +02:00
|
|
|
UPlayer uplayer = this.arg(0, ARUPlayer.getAny(usender));
|
2013-04-29 10:23:39 +02:00
|
|
|
if (uplayer == null) return;
|
|
|
|
|
|
|
|
Boolean newValue = this.arg(1, ARBoolean.get(), !ta.isPlayerIdGranted(uplayer.getId()));
|
|
|
|
if (newValue == null) return;
|
|
|
|
|
|
|
|
// FPerm
|
2013-04-29 10:26:15 +02:00
|
|
|
if (!FPerm.ACCESS.has(usender, hostFaction, true)) return;
|
2013-04-29 10:23:39 +02:00
|
|
|
|
|
|
|
// Apply
|
|
|
|
ta = ta.withPlayerId(uplayer.getId(), newValue);
|
|
|
|
BoardColls.get().setTerritoryAccessAt(chunk, ta);
|
|
|
|
|
|
|
|
// Inform
|
|
|
|
this.sendAccessInfo();
|
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
2013-04-29 10:23:39 +02:00
|
|
|
}
|