From cc3a039112e4402b1e243e06d6058cd91ba5da4d Mon Sep 17 00:00:00 2001 From: Sokomine Date: Thu, 25 Jan 2024 19:12:02 +0100 Subject: [PATCH] bugfix; basic entities do not use the mobs_redo interface for talking (no lasso etc exists for them) --- talking_npc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/talking_npc.lua b/talking_npc.lua index b8f6082..0b82bcd 100644 --- a/talking_npc.lua +++ b/talking_npc.lua @@ -70,7 +70,7 @@ npc_talk.talking_npc_entity_prototype = { -- actually talk to the NPC on_rightclick = function(self, clicker) npc_talk.look_at_player(self, clicker) - return yl_speak_up.mobs_on_rightclick(self, clicker) + return yl_speak_up.talk(self, clicker) end, }