When a faction leader is kicked from his faction for whatever reason (not logging in for too long, a server admin running the /f kick command on him, the player being banned from server), another player will now be promoted to faction leader in his place. If the faction has at least one officer, one of them will be chosen. Otherwise, a normal member will be promoted. If the faction leader was the last/only member, the faction will of course be disbanded.
Also, players being kicked due to inactivity is now logged.
This commit is contained in:
parent
bbc7c48408
commit
6ea54cb7ac
@ -462,6 +462,13 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator
|
|||||||
public void leave(boolean makePay)
|
public void leave(boolean makePay)
|
||||||
{
|
{
|
||||||
Faction myFaction = this.getFaction();
|
Faction myFaction = this.getFaction();
|
||||||
|
|
||||||
|
if (myFaction == null)
|
||||||
|
{
|
||||||
|
resetFactionData();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
boolean perm = myFaction.getFlag(FFlag.PERMANENT);
|
boolean perm = myFaction.getFlag(FFlag.PERMANENT);
|
||||||
|
|
||||||
if (!perm && this.getRole() == Rel.LEADER && myFaction.getFPlayers().size() > 1)
|
if (!perm && this.getRole() == Rel.LEADER && myFaction.getFPlayers().size() > 1)
|
||||||
|
@ -7,6 +7,7 @@ import java.util.concurrent.ConcurrentSkipListMap;
|
|||||||
import java.util.concurrent.CopyOnWriteArrayList;
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
|
|
||||||
import com.google.gson.reflect.TypeToken;
|
import com.google.gson.reflect.TypeToken;
|
||||||
|
import com.massivecraft.factions.struct.Rel;
|
||||||
import com.massivecraft.factions.zcore.persist.PlayerEntityCollection;
|
import com.massivecraft.factions.zcore.persist.PlayerEntityCollection;
|
||||||
|
|
||||||
public class FPlayers extends PlayerEntityCollection<FPlayer>
|
public class FPlayers extends PlayerEntityCollection<FPlayer>
|
||||||
@ -61,6 +62,13 @@ public class FPlayers extends PlayerEntityCollection<FPlayer>
|
|||||||
{
|
{
|
||||||
if (now - fplayer.getLastLoginTime() > toleranceMillis)
|
if (now - fplayer.getLastLoginTime() > toleranceMillis)
|
||||||
{
|
{
|
||||||
|
if (Conf.logFactionLeave || Conf.logFactionKick)
|
||||||
|
P.p.log("Player "+fplayer.getName()+" was auto-removed due to inactivity.");
|
||||||
|
|
||||||
|
// if player is faction leader, sort out the faction since he's going away
|
||||||
|
if (fplayer.getRole() == Rel.LEADER)
|
||||||
|
fplayer.getFaction().promoteNewLeader();
|
||||||
|
|
||||||
fplayer.leave(false);
|
fplayer.leave(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -416,6 +416,46 @@ public class Faction extends Entity implements EconomyParticipator
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// used when current leader is about to be removed from the faction; promotes new leader, or disbands faction if no other members left
|
||||||
|
public void promoteNewLeader()
|
||||||
|
{
|
||||||
|
if (! this.isNormal()) return;
|
||||||
|
|
||||||
|
FPlayer oldLeader = this.getFPlayerLeader();
|
||||||
|
|
||||||
|
// get list of officers, or list of normal members if there are no officers
|
||||||
|
ArrayList<FPlayer> replacements = this.getFPlayersWhereRole(Rel.OFFICER);
|
||||||
|
if (replacements == null || replacements.isEmpty())
|
||||||
|
replacements = this.getFPlayersWhereRole(Rel.MEMBER);
|
||||||
|
|
||||||
|
if (replacements == null || replacements.isEmpty())
|
||||||
|
{ // faction leader is the only member; one-man faction
|
||||||
|
if (this.getFlag(FFlag.PERMANENT))
|
||||||
|
{
|
||||||
|
oldLeader.setRole(Rel.MEMBER);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// no members left and faction isn't permanent, so disband it
|
||||||
|
if (Conf.logFactionDisband)
|
||||||
|
P.p.log("The faction "+this.getTag()+" ("+this.getId()+") has been disbanded since it has no members left.");
|
||||||
|
|
||||||
|
for (FPlayer fplayer : FPlayers.i.getOnline())
|
||||||
|
{
|
||||||
|
fplayer.msg("The faction %s<i> was disbanded.", this.getTag(fplayer));
|
||||||
|
}
|
||||||
|
|
||||||
|
this.detach();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{ // promote new faction leader
|
||||||
|
oldLeader.setRole(Rel.MEMBER);
|
||||||
|
replacements.get(0).setRole(Rel.LEADER);
|
||||||
|
this.msg("<i>Faction leader <h>%s<i> has been removed. %s<i> has been promoted as the new faction leader.", oldLeader.getName(), replacements.get(0).getName());
|
||||||
|
P.p.log("Faction "+this.getTag()+" ("+this.getId()+") leader was removed. Replacement leader: "+replacements.get(0).getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//----------------------------------------------//
|
//----------------------------------------------//
|
||||||
// Messages
|
// Messages
|
||||||
//----------------------------------------------//
|
//----------------------------------------------//
|
||||||
|
@ -8,6 +8,7 @@ import com.massivecraft.factions.P;
|
|||||||
import com.massivecraft.factions.struct.FFlag;
|
import com.massivecraft.factions.struct.FFlag;
|
||||||
import com.massivecraft.factions.struct.FPerm;
|
import com.massivecraft.factions.struct.FPerm;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
|
import com.massivecraft.factions.struct.Rel;
|
||||||
|
|
||||||
public class CmdKick extends FCommand
|
public class CmdKick extends FCommand
|
||||||
{
|
{
|
||||||
@ -62,24 +63,14 @@ public class CmdKick extends FCommand
|
|||||||
fme.msg("<i>You kicked %s<i> from the faction %s<i>!", you.describeTo(fme), yourFaction.describeTo(fme));
|
fme.msg("<i>You kicked %s<i> from the faction %s<i>!", you.describeTo(fme), yourFaction.describeTo(fme));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Conf.logFactionKick)
|
||||||
|
P.p.log((senderIsConsole ? "A console command" : fme.getName())+" kicked "+you.getName()+" from the faction: "+yourFaction.getTag());
|
||||||
|
|
||||||
|
if (you.getRole() == Rel.LEADER)
|
||||||
|
yourFaction.promoteNewLeader();
|
||||||
|
|
||||||
yourFaction.deinvite(you);
|
yourFaction.deinvite(you);
|
||||||
you.resetFactionData();
|
you.resetFactionData();
|
||||||
|
|
||||||
if (Conf.logFactionKick)
|
|
||||||
P.p.log(fme.getName()+" kicked "+you.getName()+" from the faction: "+yourFaction.getTag());
|
|
||||||
|
|
||||||
if (yourFaction.getFPlayers().isEmpty() && !yourFaction.getFlag(FFlag.PERMANENT))
|
|
||||||
{
|
|
||||||
// Remove this faction
|
|
||||||
for (FPlayer fplayer : FPlayers.i.getOnline())
|
|
||||||
{
|
|
||||||
fplayer.msg("The faction %s<i> was disbanded.", yourFaction.getTag(fplayer));
|
|
||||||
}
|
|
||||||
yourFaction.detach();
|
|
||||||
|
|
||||||
if (Conf.logFactionDisband)
|
|
||||||
P.p.log("The faction "+yourFaction.getTag()+" ("+yourFaction.getId()+") was disbanded since the last player was kicked by "+(senderIsConsole ? "console command" : fme.getName())+".");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -418,6 +418,8 @@ public class FactionsPlayerListener extends PlayerListener
|
|||||||
// if player was banned (not just kicked), get rid of their stored info
|
// if player was banned (not just kicked), get rid of their stored info
|
||||||
if (Conf.removePlayerDataWhenBanned && event.getReason().equals("Banned by admin."))
|
if (Conf.removePlayerDataWhenBanned && event.getReason().equals("Banned by admin."))
|
||||||
{
|
{
|
||||||
|
if (badGuy.getRole() == Rel.LEADER)
|
||||||
|
badGuy.getFaction().promoteNewLeader();
|
||||||
badGuy.leave(false);
|
badGuy.leave(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user