summaryrefslogtreecommitdiff
path: root/soh/src/code
diff options
context:
space:
mode:
Diffstat (limited to 'soh/src/code')
-rw-r--r--soh/src/code/z_en_item00.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/soh/src/code/z_en_item00.c b/soh/src/code/z_en_item00.c
index 22a03ea32..9d2b2dd74 100644
--- a/soh/src/code/z_en_item00.c
+++ b/soh/src/code/z_en_item00.c
@@ -1753,7 +1753,11 @@ void Item_DropCollectibleRandom(PlayState* play, Actor* fromActor, Vec3f* spawnP
}
}
} else {
- Item_DropCollectible(play, spawnPos, params | 0x8000);
+ if (CVarGetInteger("gBushDropFix", 0)) {
+ Item_DropCollectible(play, spawnPos, dropId | 0x8000);
+ } else {
+ Item_DropCollectible(play, spawnPos, params | 0x8000);
+ }
}
dropQuantity--;
}