diff --git a/soh/soh/Enhancements/TreesDropSticks.cpp b/soh/soh/Enhancements/TreesDropSticks.cpp index b31f7c733..7fdc4eb0a 100644 --- a/soh/soh/Enhancements/TreesDropSticks.cpp +++ b/soh/soh/Enhancements/TreesDropSticks.cpp @@ -15,7 +15,7 @@ void RegisterTreesDropSticks() { dropsSpawnPt.y += 200.0f; *should = false; - for (s32 numDrops = Rand_Next() % 4; numDrops >= 0; numDrops--) { + for (s32 numDrops = Rand_Next() % 4; numDrops > 0; numDrops--) { Item_DropCollectible(gPlayState, &dropsSpawnPt, ITEM00_STICK); } }