stash length fix (buy 3 item full combo from vbox)

This commit is contained in:
Mashy 2019-11-23 20:26:45 +10:00
parent 8641e74f9b
commit f0ea19940f

View File

@ -171,7 +171,7 @@ impl Vbox {
self.bound.push(combo.item);
// self.bound.sort_unstable();
if self.bound.len() >= 6 {
if self.bound.len() >= 7 {
return Err(err_msg("too many items bound"));
}
Ok(self)