2011-04-08 15:51:07 +02:00
|
|
|
package org.mcteam.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandClaim extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandClaim() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("claim");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
helpDescription = "Claim the land where you are standing";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-08 17:16:43 +02:00
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-10 21:26:12 +02:00
|
|
|
me.attemptClaim(true);
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|