From 2122e46efaefc61f8479b37e96810345540d9b6e Mon Sep 17 00:00:00 2001 From: "C. Yang" Date: Sat, 6 Jan 2024 22:01:02 -0500 Subject: [PATCH] tweak chances --- src/chats.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chats.js b/src/chats.js index c83fbfc..dea95d0 100644 --- a/src/chats.js +++ b/src/chats.js @@ -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;