{
int lostPoints = playerTwoPoints / 3;
playerTwoStat.set(POINTS, playerTwoPoints - lostPoints);
Olympiad.updateNobleStats(_playerTwo.getObjectId(), playerTwoStat);
SystemMessage sm = new SystemMessage(SystemMessageId.S1_HAS_LOST_S2_OLYMPIAD_POINTS);
sm.addString(_playerTwoName);
sm.addNumber(lostPoints);
broadcastMessage(sm, false);
if (Config.DEBUG)
_log.info("Olympia Result: " + _playerTwoName + " lost " + lostPoints + " points for defaulting");