Skip to content

Commit e755e7f

Browse files
committed
Changed action odds
1 parent 5ca1ca8 commit e755e7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backend/PyMatcha/utils/bot_actions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ def _botaction_send_message_over_old_one(bot_user: User, chatbot):
138138
def decide_bot_action(bot_user: User):
139139
recommendations = _get_recommendations(bot_user, ignore_bots=True)
140140

141-
# The bot will first view 0 to 10 profiles
142-
for _ in range(0, randrange(0, 10)):
141+
# The bot will first view 0 to 3 profiles
142+
for _ in range(0, randrange(0, 3)):
143143
_botaction_view(bot_user, recommendations)
144144

145-
# The bot will then like 0 to 3 profiles
146-
for _ in range(0, randrange(0, 3)):
145+
# The bot will then like 0 to 2 profiles
146+
for _ in range(0, randrange(0, 2)):
147147
_botaction_like(bot_user, recommendations)
148148

149149
matches = bot_user.get_matches()

0 commit comments

Comments
 (0)