From e0bc44f63b00a5c6baf787c53d7c2194c5d263c8 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 29 Mar 2024 17:48:37 +0800 Subject: [PATCH] 1 --- server/gameserver/ingamevoice.cc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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; }); }