Call changed() more often

This commit is contained in:
BuildTools 2015-11-08 17:59:32 +01:00 committed by Olof Larsson
parent 18f4dd3bf2
commit 1c6f3f28d1
4 changed files with 14 additions and 3 deletions

View File

@ -72,6 +72,7 @@ public class CmdFactionsInviteAdd extends FactionsCommand
// Apply
msenderFaction.setInvited(mplayer, true);
msenderFaction.changed();
}
else
{

View File

@ -109,6 +109,9 @@ public class CmdFactionsInviteRemove extends FactionsCommand
// Apply
msenderFaction.setInvited(mplayer, false);
// If all, we do this at last. So we only do it once.
if (! all) msenderFaction.changed();
}
else
{
@ -143,6 +146,7 @@ public class CmdFactionsInviteRemove extends FactionsCommand
);
msenderFaction.sendMessage(factionsRevokeAll);
msenderFaction.changed();
}
}

View File

@ -119,6 +119,9 @@ public abstract class CmdFactionsRelationAbstract extends FactionsCommand
otherFaction.msg("<i>This will have no effect while their faction is peaceful.");
msenderFaction.msg("<i>This will have no effect while your faction is peaceful.");
}
// Mark as changed
msenderFaction.changed();
}
}

View File

@ -868,17 +868,20 @@ public class Faction extends Entity<Faction> implements EconomyParticipator, Nam
Map<MPerm, Set<Rel>> perms = this.getPerms();
Set<Rel> rels = perms.get(perm);
boolean changed;
if (permitted)
{
rels.add(rel);
changed = rels.add(rel);
}
else
{
rels.remove(rel);
changed = rels.remove(rel);
}
this.setPerms(perms);
if (changed) this.changed();
}
// -------------------------------------------- //