mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 16:24:35 +01:00
fix peep inverted logic from 76252a32d9
This commit is contained in:
@@ -7890,7 +7890,7 @@ loc_69B119:
|
||||
value -= price;
|
||||
value = max(8, value);
|
||||
|
||||
if (RCT2_GLOBAL(RCT2_ADDRESS_PARK_FLAGS, uint32) & PARK_FLAGS_NO_MONEY) {
|
||||
if (!(RCT2_GLOBAL(RCT2_ADDRESS_PARK_FLAGS, uint32) & PARK_FLAGS_NO_MONEY)) {
|
||||
if (value >= (money32)(scenario_rand() & 0x07)) {
|
||||
// "This x is a really good value"
|
||||
uint8 thought_item = (shopItem >= 32 ? (PEEP_THOUGHT_TYPE_PHOTO2 + (shopItem - 32)) : (PEEP_THOUGHT_TYPE_BALLOON + shopItem));
|
||||
|
||||
Reference in New Issue
Block a user