fix(Roulette Kit): Don't check for entire space of kit free when using the kit roulette option.

This commit is contained in:
Retro Pronghorn 2020-04-30 22:25:11 +00:00 committed by Brianna
parent c23802ec69
commit 9574a237d0
1 changed files with 3 additions and 0 deletions

View File

@ -90,6 +90,9 @@ public class Kit {
}
}
// Since roulette only gives one item, we don't need to check if the user has room for the whole kit.
if (kitAnimation == KitAnimation.ROULETTE && space >= 1)
return true;
return space >= itemAmount;
}