Fixes POM, and moves things around
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
package com.massivecraft.factions.cmd;
|
||||
|
||||
import com.massivecraft.factions.cmd.req.ReqHasFaction;
|
||||
|
||||
public class CmdFactionsLeave extends FactionsCommand {
|
||||
// -------------------------------------------- //
|
||||
// CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
public CmdFactionsLeave() {
|
||||
// Requirements
|
||||
this.addRequirements(ReqHasFaction.get());
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// OVERRIDE
|
||||
// -------------------------------------------- //
|
||||
|
||||
@Override
|
||||
public void perform() {
|
||||
msender.leave();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user