Factions/src/com/massivecraft/factions/cmd/FactionsCommand.java

36 lines
788 B
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-10-08 23:22:02 +02:00
2013-04-24 15:14:15 +02:00
import com.massivecraft.factions.entity.MPlayer;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.cmd.MassiveCommand;
2011-10-08 23:22:02 +02:00
public class FactionsCommand extends MassiveCommand
2011-10-08 23:22:02 +02:00
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
public MPlayer msender;
2014-09-18 13:41:20 +02:00
public Faction msenderFaction;
2013-04-10 10:00:40 +02:00
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
2011-10-09 21:57:43 +02:00
@Override
public void fixSenderVars()
2011-10-08 23:22:02 +02:00
{
this.msender = MPlayer.get(sender);
2014-09-18 13:41:20 +02:00
this.msenderFaction = this.msender.getFaction();
2011-10-08 23:22:02 +02:00
}
2013-04-16 11:05:49 +02:00
2014-09-13 00:50:33 +02:00
@Override
public void unsetSenderVars()
{
this.msender = null;
2014-09-18 13:41:20 +02:00
this.msenderFaction = null;
2014-09-13 00:50:33 +02:00
}
2011-10-08 23:22:02 +02:00
}