Sync with L2jServer HighFive Mar 1st 2015.

This commit is contained in:
mobius
2015-03-01 22:48:14 +00:00
parent f14af24b41
commit 6fa0ed56e3
116 changed files with 971 additions and 676 deletions

View File

@ -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;
}
}