Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
cheryllium committed Jan 4, 2024
1 parent f651099 commit c51569f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chats.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ let prankChat = {
negative: ['angry', 'surprised', 'grumpy', 'B-unhappy'],
isPositive: function (fish1, fish2) {
if (!fish2.goodMood) {
return Math.random() < 0.3;
return Math.random() < 0.5;
}
return Math.random() < 0.6;
return Math.random() < 0.9;
},
};
let cheerUpChat = {
Expand Down

0 comments on commit c51569f

Please sign in to comment.