bugfix; basic entities do not use the mobs_redo interface for talking (no lasso etc exists for them)

This commit is contained in:
Sokomine 2024-01-25 19:12:02 +01:00
parent 0c6c1aabd6
commit cc3a039112

View File

@ -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,
}