1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

disguise fixes

This commit is contained in:
Robin Appelman 2025-06-29 14:38:10 +02:00
commit a229ed5f11

View file

@ -271,9 +271,9 @@ impl GameStateAnalyser {
const WEAPON_2: SendPropIdentifier = SendPropIdentifier::new("m_hMyWeapons", "002"); const WEAPON_2: SendPropIdentifier = SendPropIdentifier::new("m_hMyWeapons", "002");
const DISGUISE_TEAM: SendPropIdentifier = const DISGUISE_TEAM: SendPropIdentifier =
SendPropIdentifier::new("DT_TFPlayerSharedLocal", "m_nDesiredDisguiseTeam"); SendPropIdentifier::new("DT_TFPlayerShared", "m_nDisguiseTeam");
const DISGUISE_CLASS: SendPropIdentifier = const DISGUISE_CLASS: SendPropIdentifier =
SendPropIdentifier::new("DT_TFPlayerSharedLocal", "m_nDesiredDisguiseClass"); SendPropIdentifier::new("DT_TFPlayerShared", "m_nDisguiseClass");
const CLOAK_LEVEL: SendPropIdentifier = const CLOAK_LEVEL: SendPropIdentifier =
SendPropIdentifier::new("DT_TFPlayerShared", "m_flCloakMeter"); SendPropIdentifier::new("DT_TFPlayerShared", "m_flCloakMeter");