mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 00:14:09 +00:00
player mood enum
This commit is contained in:
parent
c5b411c1ed
commit
7aca08a954
3 changed files with 14 additions and 5 deletions
|
@ -3839,9 +3839,9 @@ cAudioManager::SetPlayersMood(uint8 mood, int32 time)
|
|||
{
|
||||
if (!m_bIsInitialised) return;
|
||||
|
||||
if (mood < 4) {
|
||||
m_bPlayerMood = mood;
|
||||
field_4B34 = CTimer::GetTimeInMilliseconds() + time;
|
||||
if (mood < MAX_PLAYER_MOODS) {
|
||||
m_nPlayerMood = mood;
|
||||
m_nPlayerMoodTimer = CTimer::GetTimeInMilliseconds() + time;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue