Skip to content

Commit 45d25b6

Browse files
🐛 FIX: death voice chat (#160)
1 parent 70c16ae commit 45d25b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cstrike/addons/amxmodx/scripting/CA_Addon_DeathMute.sma

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public CA_Client_Voice(const listener, const sender) {
186186
return CA_CONTINUE
187187
}
188188

189-
if(!g_canSpeakWithAlive[sender] && !is_user_alive(sender)) {
189+
if(!g_canSpeakWithAlive[sender] && !is_user_alive(sender) && is_user_alive(listener)) {
190190
return CA_SUPERCEDE
191191
}
192192

0 commit comments

Comments
 (0)