forked from embee/woomy
ship no longer breaks for numbers higher than 98
This commit is contained in:
parent
6487f20b70
commit
82c86fa9b2
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ exports.run = async (client, message, args, level, data) => {
|
||||||
under += 10
|
under += 10
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rating > 99) {
|
if (rating >= 99) {
|
||||||
meter.splice(9, 0, hearts.random())
|
meter.splice(9, 0, hearts.random())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue