Skip to content

Commit

Permalink
sneak in 2 moved props
Browse files Browse the repository at this point in the history
  • Loading branch information
LaihoE committed Nov 29, 2023
1 parent ed625d5 commit 8855a05
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/parser/src/maps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1719,6 +1719,8 @@ pub static TYPEHM: phf::Map<&'static str, PropType> = phf_map! {
"CCSPlayerController.m_iPing"=> PropType::Controller,

"entity_id" => PropType::Custom,
"CCSPlayerPawn.CCSPlayer_ItemServices.m_bHasDefuser" => PropType::Player,
"CCSPlayerPawn.CCSPlayer_ItemServices.m_bHasHelmet" => PropType::Player,
"CCSPlayerPawn.m_MoveCollide" => PropType::Player,
"CCSPlayerPawn.m_MoveType" => PropType::Player,
"CCSPlayerPawn.m_iTeamNum" => PropType::Player,
Expand Down Expand Up @@ -2091,8 +2093,9 @@ pub static FRIENDLY_NAMES_MAPPING: phf::Map<&'static str, &'static str> = phf_ma

"user_id" => "user_id",
"armor"=>"CCSPlayerController.m_iPawnArmor",
"has_defuser"=>"CCSPlayerController.m_bPawnHasDefuser",
"has_helmet"=>"CCSPlayerController.m_bPawnHasHelmet",
"has_defuser"=>"CCSPlayerPawn.CCSPlayer_ItemServices.m_bHasDefuser",
"has_helmet"=>"CCSPlayerPawn.CCSPlayer_ItemServices.m_bHasHelmet",

"spawn_time"=>"CCSPlayerController.m_iPawnLifetimeStart",
"death_time"=>"CCSPlayerController.m_iPawnLifetimeEnd",
"score"=>"CCSPlayerController.m_iScore",
Expand Down

0 comments on commit 8855a05

Please sign in to comment.