ship no longer breaks for numbers higher than 98

This commit is contained in:
Emily 2020-04-17 17:06:48 +10:00
parent 6487f20b70
commit 82c86fa9b2
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ exports.run = async (client, message, args, level, data) => {
under += 10
}
if (rating > 99) {
if (rating >= 99) {
meter.splice(9, 0, hearts.random())
}