From 9c4fb8b24cb7686f0c12a87d9f014fc309a5e923 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 29 Jan 2026 14:45:46 -0300 Subject: add missing factor to npc talk delay calculation --- src/crnonpl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crnonpl.cc b/src/crnonpl.cc index 81c0f16..691846c 100644 --- a/src/crnonpl.cc +++ b/src/crnonpl.cc @@ -1107,7 +1107,7 @@ void TBehaviourDatabase::react(TNPC *Npc, const char *Text, SITUATION Situation) if(FormatNpcResponse(Response, sizeof(Response), Template, Npc, Interlocutor)){ Npc->ToDoWait(TalkDelay); Npc->ToDoTalk(TALK_SAY, NULL, Response, false); - TalkDelay += 3100 + (int)strlen(Response) * 100; + TalkDelay += 3100 + (int)(strlen(Response) / 2) * 100; StartToDo = true; }else{ Response[20] = 0; -- cgit v1.2.3