Skip to content

Commit

Permalink
tweak chances
Browse files Browse the repository at this point in the history
  • Loading branch information
cheryllium committed Jan 7, 2024
1 parent 7cf3bdf commit 2122e46
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 @@ -55,9 +55,9 @@ export default function generateChatScripts(fish1, fish2) {
let chance = Math.random();
if (fish1.goodMood && fish2.goodMood) {
// Both fish are in a good mood
if (chance < 0.6) {
if (chance < 0.5) {
chat = pleasantChat;
} else if (chance < 0.9) {
} else if (chance < 0.8) {
chat = prankChat;
} else {
chat = argumentChat;
Expand Down

0 comments on commit 2122e46

Please sign in to comment.