From 2c498ffc0c5e8a33933061032a91f4e7c61c6a0a Mon Sep 17 00:00:00 2001 From: brightrim Date: Sun, 24 Nov 2024 21:34:12 +0100 Subject: [PATCH] Increase terry oggs range of vision --- magic/tutorials.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magic/tutorials.lua b/magic/tutorials.lua index 7cc9d3bd3..d6b1c1bce 100644 --- a/magic/tutorials.lua +++ b/magic/tutorials.lua @@ -21,7 +21,7 @@ function M.isTutorialNPCnearby(user) local npc = position(656, 316, 0) local location = user.pos - local distance = 5 + local distance = 15 local layerCheck = location.z == npc.z local ycheck = location.y < npc.y + distance and location.y > npc.y - distance local xcheck = location.x < npc.x + distance and location.x > npc.x - distance