Add hello to prompt response

This commit is contained in:
emkarcinos 2022-04-20 10:21:57 +02:00
parent 4c303d2e17
commit 012dd6e2a3

View File

@ -14,7 +14,7 @@ def taktyka_dialogu(state):
if should_respond_gently(state):
return [hello_act, name_response_act]
if should_prompt(state):
return [help_response_act]
return [hello_act, help_response_act]
if should_respond_cold(state):
return [name_response_act]
return [unknown_act]