Skip to content

Commit

Permalink
Update playMPB.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Wunder-Wulfe authored Nov 4, 2020
1 parent e23aa28 commit e02e1a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion playMPB.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const Responses = [
["alert", "No.", "Nobody is playing"],
["alert", "No.", "Unless you want to say hello to the only player"],
["alert", "No.", "Everyone on the server is sweaty"],
["success", "Sure.", "There's quite a few people playing"]
["success", "Sure.", "There's quite a few people playing"],
["warn", "Maybe?", "Looks like theres a 1 v 1 going on"],
];

const sweats = [
Expand Down Expand Up @@ -68,6 +69,8 @@ const answer = async function() {
pickResponse(3);
else if (maxPlaying === 1)
pickResponse(4);
else if (maxPlaying === 2)
pickResponse(7);
else if (maxPlaying <= 5)
pickResponse(1);
}
Expand Down

0 comments on commit e02e1a7

Please sign in to comment.