2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.struct.Relation;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandRelationEnemy extends FRelationCommand {
|
|
|
|
|
2011-03-22 18:48:09 +01:00
|
|
|
public FCommandRelationEnemy() {
|
|
|
|
aliases.add("enemy");
|
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
2011-05-08 17:16:43 +02:00
|
|
|
|
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
relation(Relation.ENEMY, parameters.get(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|