if(Config.FORCE_COMPLETE_STATUS_UPDATE && this instanceof L2PcInstance){
su = new StatusUpdate((L2PcInstance)this);
}else{
su = new StatusUpdate(getObjectId());
su.addAttribute(StatusUpdate.CUR_HP, (int) getCurrentHp());
su.addAttribute(StatusUpdate.CUR_MP, (int) getCurrentMp());
}
// Go through the StatusListener
// Send the Server->Client packet StatusUpdate with current HP and MP
for (L2Character temp : getStatus().getStatusListener())