| 690 | } |
| 691 | |
| 692 | void CGameTeams::SetStartTime(CPlayer *Player, int StartTime) |
| 693 | { |
| 694 | if(!Player) |
| 695 | return; |
| 696 | |
| 697 | CCharacter *pChar = Player->GetCharacter(); |
| 698 | if(pChar) |
| 699 | pChar->m_StartTime = StartTime; |
| 700 | } |
| 701 | |
| 702 | void CGameTeams::SetLastTimeCp(CPlayer *Player, int LastTimeCp) |
| 703 | { |
nothing calls this directly
no test coverage detected