Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gamedata/scripts/talker_trigger_idle_conversation.script
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local function cooldown_ready()
end

local function someone_should_make_idle_conversation()
local result = cooldown_ready() and queries.is_player_in_combat()
local result = cooldown_ready() and not queries.is_in_combat(queries.get_player())
-- reset cooldown
if result then last_idle_conversation_time_ms = queries.get_game_time_ms() end
return result
Expand Down