Minor changes

This commit is contained in:
Olof Larsson
2011-10-14 15:40:03 +02:00
parent 00f6f4ab05
commit 04074bc2b4
2 changed files with 10 additions and 17 deletions

View File

@@ -121,6 +121,15 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator
// FIELD: chatMode
private ChatMode chatMode;
public void setChatMode(ChatMode chatMode) { this.chatMode = chatMode; }
public ChatMode getChatMode()
{
if(this.factionId.equals("0") || ! Conf.factionOnlyChat)
{
this.chatMode = ChatMode.PUBLIC;
}
return chatMode;
}
// FIELD: account
public MethodAccount getAccount()
@@ -189,22 +198,6 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator
public ChatMode getChatMode()
{
if(this.factionId.equals("0"))
{
return ChatMode.PUBLIC;
}
return chatMode;
}
public void setChatMode(ChatMode chatMode)
{
this.chatMode = chatMode;
}
public long getLastLoginTime()
{
return lastLoginTime;