We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d10fc1 commit 81069dbCopy full SHA for 81069db
src/parser/src/second_pass/game_events.rs
@@ -37,6 +37,8 @@ static INTERNALEVENTFIELDS: &'static [&str] = &[
37
"userid_pawn",
38
"attacker_pawn",
39
"assister_pawn",
40
+ "victim",
41
+ "victim_pawn",
42
];
43
#[derive(Debug, Clone)]
44
pub struct RoundEnd {
@@ -203,6 +205,7 @@ impl<'a> SecondPassParser<'a> {
203
205
"attacker" => "attacker",
204
206
"userid" => "user",
207
"assister" => "assister",
208
+ "victim" => "victim",
209
// edge case in some events
210
"entityid" => {
211
let field_names: Vec<&String> = fields.iter().map(|x| &x.name).collect();
0 commit comments