Sync with L2jServer HighFive Mar 12th 2015.
This commit is contained in:
@ -621,7 +621,7 @@ public interface IXmlReader
|
||||
* Simple XML error handler.
|
||||
* @author Zoey76
|
||||
*/
|
||||
class XMLErrorHandler implements ErrorHandler
|
||||
static class XMLErrorHandler implements ErrorHandler
|
||||
{
|
||||
@Override
|
||||
public void warning(SAXParseException e) throws SAXParseException
|
||||
|
@ -2535,10 +2535,6 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
|
||||
stopAllEffectsExceptThoseThatLastThroughDeath();
|
||||
|
||||
if (isPlayer() && (getActingPlayer().getAgathionId() != 0))
|
||||
{
|
||||
getActingPlayer().setAgathionId(0);
|
||||
}
|
||||
calculateRewards(killer);
|
||||
|
||||
// Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
|
||||
|
@ -410,7 +410,7 @@ public abstract class AbstractOlympiadGame
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
player.setIsPendingRevive(false);
|
||||
player.setInstanceId(0);
|
||||
player.teleToLocation(loc);
|
||||
player.unsetLastLocation();
|
||||
|
@ -53,8 +53,8 @@ public class ExOlympiadSpelledInfo extends L2GameServerPacket
|
||||
{
|
||||
if ((info != null) && info.isInUse())
|
||||
{
|
||||
writeD(info.getSkill().getId());
|
||||
writeH(info.getSkill().getLevel());
|
||||
writeD(info.getSkill().getDisplayId());
|
||||
writeH(info.getSkill().getDisplayLevel());
|
||||
writeD(0x00);
|
||||
writeH(info.getTime());
|
||||
}
|
||||
|
@ -50,8 +50,8 @@ public class PartySpelled extends L2GameServerPacket
|
||||
{
|
||||
if ((info != null) && info.isInUse())
|
||||
{
|
||||
writeD(info.getSkill().getId());
|
||||
writeH(info.getSkill().getLevel());
|
||||
writeD(info.getSkill().getDisplayId());
|
||||
writeH(info.getSkill().getDisplayLevel());
|
||||
writeD(0x00);
|
||||
writeH(info.getTime());
|
||||
}
|
||||
|
Reference in New Issue
Block a user