diff --git a/server/gameserver/ingamevoice.cc b/server/gameserver/ingamevoice.cc index 556e4d1c..3ef995e7 100644 --- a/server/gameserver/ingamevoice.cc +++ b/server/gameserver/ingamevoice.cc @@ -46,6 +46,27 @@ void InGameVoice::OnHumanBeKill(int killer_id, Human* deader) InGameVoiceEventType_e::kGlobalKills, [this] (const mt::InGameVoice* meta) -> bool { + switch (meta->CondType()) { + case InGameVoiceCondType_e::kEQ: + { + + } + break; + case InGameVoiceCondType_e::kGT: + { + + } + break; + case InGameVoiceCondType_e::kGE: + { + + } + break; + default: + { + } + break; + } return true; }); }