Skip to content

Commit

Permalink
🌶
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sync committed Mar 24, 2024
1 parent 718fc24 commit b1d9e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/Additional_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ public function get_ops_sus_suicides($op_ids = false)
AND hit.victim_aid = hit.attacker_aid
AND hit.victim_aid = killed.victim_aid
AND hit.operation_id = killed.operation_id
AND (hit.frame = killed.frame OR hit.frame = (killed.frame - 1) OR hit.frame = (killed.frame + 1))", 'LEFT')
AND hit.frame IN (killed.frame, GREATEST(killed.frame, 1) - 1, killed.frame + 1)", 'LEFT')
->where("hit.id IS NULL AND killed.event = 'killed' AND killed.victim_aid IS NOT NULL AND killed.victim_aid = killed.attacker_aid");

if ($op_ids !== false) {
Expand Down

0 comments on commit b1d9e84

Please sign in to comment.