moderator -> officer rename in messages in the officer command.

This commit is contained in:
Olof Larsson 2011-11-06 09:12:38 +01:00
parent 9c678965be
commit da15de2b52

View File

@ -46,13 +46,13 @@ public class CmdOfficer extends FCommand
{ {
// Revoke // Revoke
you.setRole(Rel.MEMBER); you.setRole(Rel.MEMBER);
myFaction.msg("%s<i> is no longer moderator in your faction.", you.describeTo(myFaction, true)); myFaction.msg("%s<i> is no longer officer in your faction.", you.describeTo(myFaction, true));
} }
else else
{ {
// Give // Give
you.setRole(Rel.OFFICER); you.setRole(Rel.OFFICER);
myFaction.msg("%s<i> was promoted to moderator in your faction.", you.describeTo(myFaction, true)); myFaction.msg("%s<i> was promoted to officer in your faction.", you.describeTo(myFaction, true));
} }
} }