Skip to content

Commit

Permalink
Exclude 'cycle' from balloon item type
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Feb 22, 2024
1 parent ffd78d5 commit 9ab6b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShadowRando/Views/MainView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2758,7 +2758,7 @@ private static void RandomizeItemBalloons(ref List<SetObjectShadow> setData, Ran

foreach (var balloon in itemBalloonItems)
{
balloon.item.Item = (EItemShadow)r.Next(11);
balloon.item.Item = (EItemShadow)r.Next(10);
setData[balloon.index] = balloon.item;
}
}
Expand Down

0 comments on commit 9ab6b48

Please sign in to comment.