Sync with L2jServer HighFive Mar 1st 2015.
This commit is contained in:
@ -283,7 +283,15 @@ public class ClanBoard implements IWriteBoardHandler
|
||||
@Override
|
||||
public boolean writeCommunityBoardCommand(L2PcInstance activeChar, String arg1, String arg2, String arg3, String arg4, String arg5)
|
||||
{
|
||||
// TODO: Implement.
|
||||
return false;
|
||||
// the only Write bypass that comes to this handler is "Write Notice Set _ Content Content Content";
|
||||
// arg1 = Set, arg2 = _
|
||||
final L2Clan clan = activeChar.getClan();
|
||||
|
||||
if ((clan != null) && activeChar.isClanLeader())
|
||||
{
|
||||
clan.setNotice(arg3);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user