We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f30f6 commit c010429Copy full SHA for c010429
1 file changed
mods/game_bot/default_configs/vBot_4.8/vBot/extras.lua
@@ -547,7 +547,7 @@ if true then
547
local function checkPlayers()
548
for i, spec in ipairs(getSpectators()) do
549
if spec:isPlayer() and spec:getText() == "" and spec:getPosition().z == posz() and spec ~= player then
550
- g_game.look(spec)
+ g_game.look(spec, true)
551
found = now
552
end
553
@@ -568,7 +568,7 @@ if true then
568
onCreatureAppear(function(creature)
569
if not settings.checkPlayer then return end
570
if creature:isPlayer() and creature:getText() == "" and creature:getPosition().z == posz() and creature ~= player then
571
- g_game.look(creature)
+ g_game.look(creature, true)
572
573
574
end)
0 commit comments