This commit is contained in:
aozhiwei 2024-04-01 20:51:15 +08:00
parent d3e74e59dd
commit 2543ad3b5d

View File

@ -139,12 +139,12 @@ namespace mt
break; break;
case InGameVoiceCondType_e::kGT: case InGameVoiceCondType_e::kGT:
{ {
return _cond_val > val; return val > _cond_val;
} }
break; break;
case InGameVoiceCondType_e::kGE: case InGameVoiceCondType_e::kGE:
{ {
return _cond_val >= val; return val >= _cond_val;
} }
break; break;
default: default: