@@ -245,6 +245,7 @@ IMPLEMENT_SERVERCLASS_ST( CASW_Player, DT_ASW_Player )
245245 SendPropQAngles( SENDINFO ( m_angMarineAutoAimFromClient ), 10, SPROP_CHANGES_OFTEN ),
246246 SendPropFloat( SENDINFO ( m_flInactiveKickWarning ) ),
247247 SendPropDataTable( SENDINFO_DT ( m_EquippedItemData ), &REFERENCE_SEND_TABLE( DT_RD_ItemInstances_Player ) ),
248+ SendPropInt( SENDINFO ( m_iChallengeScratch ) ),
248249END_SEND_TABLE()
249250
250251BEGIN_DATADESC( CASW_Player )
@@ -275,6 +276,7 @@ BEGIN_DATADESC( CASW_Player )
275276 DEFINE_FIELD( m_angMarineAutoAimFromClient, FIELD_VECTOR ),
276277 DEFINE_FIELD( m_flLastActiveTime, FIELD_TIME ),
277278 DEFINE_FIELD( m_flInactiveKickWarning, FIELD_TIME ),
279+ DEFINE_FIELD( m_iChallengeScratch, FIELD_INTEGER ),
278280END_DATADESC()
279281
280282BEGIN_ENT_SCRIPTDESC( CASW_Player, CBasePlayer, " The player entity." )
@@ -436,6 +438,7 @@ CASW_Player::CASW_Player()
436438 m_iRecentMapVotesCount = 0 ;
437439 m_fMapVoteCooldownEndTime = 0 .0f ;
438440 m_fLastMapVoteTime = -1000 .0f ;
441+ m_iChallengeScratch = 0 ;
439442}
440443
441444
0 commit comments