1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Rename NotNice to Overbearing

This commit is contained in:
Gymnasiast
2022-01-19 13:24:54 +01:00
parent 2fb3a41e1c
commit 2cf380f7fe
2 changed files with 2 additions and 2 deletions

View File

@@ -2955,7 +2955,7 @@ static PeepThoughtType peep_assess_surroundings(int16_t centre_x, int16_t centre
{
nearby_music |= 1;
}
else if (musicObject->GetNiceFactor() == MusicNiceFactor::NotNice)
else if (musicObject->GetNiceFactor() == MusicNiceFactor::Overbearing)
{
nearby_music |= 2;
}

View File

@@ -34,7 +34,7 @@ public:
enum class MusicNiceFactor : int8_t
{
NotNice = -1,
Overbearing = -1, // Drowns out other music
Neutral = 0,
Nice = 1,
};