bffa9df8f7
* added saveall command to save everything to disk * added reload command to reload everything from disk
22 lines
362 B
Java
22 lines
362 B
Java
package org.mcteam.factions.commands;
|
|
|
|
import org.mcteam.factions.struct.Relation;
|
|
|
|
public class FCommandRelationNeutral extends FRelationCommand {
|
|
|
|
public FCommandRelationNeutral() {
|
|
aliases.add("neutral");
|
|
}
|
|
|
|
public void perform() {
|
|
|
|
if( isLocked() ) {
|
|
sendLockMessage();
|
|
return;
|
|
}
|
|
|
|
relation(Relation.NEUTRAL, parameters.get(0));
|
|
}
|
|
|
|
}
|