From bf530ddb83b80f9159d464359cc9f577aff10ee8 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Mon, 5 Feb 2024 11:29:31 -0800 Subject: [PATCH] fix bounding box size for small font --- vacation.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vacation.p8 b/vacation.p8 index f5f029f..17b8684 100644 --- a/vacation.p8 +++ b/vacation.p8 @@ -580,7 +580,7 @@ function collides(b1, b2) end function wordtarget:update() - if collides({self.x, self.y, self.w, 7}, self.phin:box()) then + if collides({self.x, self.y, self.w, 6}, self.phin:box()) then self:on_hit() return true end