diff options
Diffstat (limited to 'pacmine/ghost.lua')
-rw-r--r-- | pacmine/ghost.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pacmine/ghost.lua b/pacmine/ghost.lua index 08167fa..ca9febd 100644 --- a/pacmine/ghost.lua +++ b/pacmine/ghost.lua @@ -80,7 +80,7 @@ for i in ipairs(ghosts) do -- find distance from ghost to player local distance = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - if distance < 1.5 then + if distance < 1.6 then -- player touches ghost!! if gamestate.power_pellet then |