Skip to content

Commit

Permalink
Fix prompter response handling
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Dec 9, 2023
1 parent 71ed9f4 commit de2602d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatbot_core/v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def handle_shout(self, user: str, shout: str, cid: str, dom: str, timestamp: str
if self.is_prompter:
self.log.info(f"Prompter bot got reply: {shout}")
# private_cid = self.get_private_conversation([user])
self.send_shout(resp)
self.send_shout(f"@proctor {resp}")
return
# Subminds ignore facilitators
elif not self._user_is_proctor(user) and user.lower() in self.facilitator_nicks \
Expand Down

0 comments on commit de2602d

Please sign in to comment.