From 8b92966aa30ad0643d8616a1772c444a9a104046 Mon Sep 17 00:00:00 2001 From: BastardofWinterfell Date: Fri, 17 Jan 2025 17:56:11 -0300 Subject: [PATCH] fix: missed look in vbot 4.8 --- mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua b/mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua index 2b69d8d597..2f6761750d 100644 --- a/mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua +++ b/mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua @@ -547,7 +547,7 @@ if true then local function checkPlayers() for i, spec in ipairs(getSpectators()) do if spec:isPlayer() and spec:getText() == "" and spec:getPosition().z == posz() and spec ~= player then - g_game.look(spec) + g_game.look(spec, true) found = now end end @@ -568,7 +568,7 @@ if true then onCreatureAppear(function(creature) if not settings.checkPlayer then return end if creature:isPlayer() and creature:getText() == "" and creature:getPosition().z == posz() and creature ~= player then - g_game.look(creature) + g_game.look(creature, true) found = now end end)