diff --git a/server/gameserver/framemaker.cc b/server/gameserver/framemaker.cc index 238fdac6..63562a8c 100644 --- a/server/gameserver/framemaker.cc +++ b/server/gameserver/framemaker.cc @@ -635,11 +635,13 @@ void FrameMaker::SerializeVoices(cs::SMUpdate* msg, Room* room, Human* hum, Fram } #ifdef MYDEBUG if (hum->IsPlayer()) { - hum->SendDebugMsg(a8::Format("ingame_voice sound_id:%d killer_id:%d self_id:%d", + hum->SendDebugMsg(a8::Format("ingame_voice sound_id:%d killer_id:%d self_id:%d frame_no:%d last_kill_frameno:%d", { v->voice_id, v->killer_id, - hum->GetUniId() + hum->GetUniId(), + hum->room->GetFrameNo(), + hum->stats->last_kill_frameno })); #if 0 a8::XPrintf("InGameVoice %d:%s\n", {room->GetRoomIdx(), f8::PbToJson(msg)});