diff --git a/src/openrct2/entity/Guest.cpp b/src/openrct2/entity/Guest.cpp index 01a8088ce0..3db0c7af3f 100644 --- a/src/openrct2/entity/Guest.cpp +++ b/src/openrct2/entity/Guest.cpp @@ -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; } diff --git a/src/openrct2/object/MusicObject.h b/src/openrct2/object/MusicObject.h index d0df0eb9b4..4341c83a2e 100644 --- a/src/openrct2/object/MusicObject.h +++ b/src/openrct2/object/MusicObject.h @@ -34,7 +34,7 @@ public: enum class MusicNiceFactor : int8_t { - NotNice = -1, + Overbearing = -1, // Drowns out other music Neutral = 0, Nice = 1, };