From 6633fffb30f0a651ac18190a01080056aafb2120 Mon Sep 17 00:00:00 2001 From: nek0 Date: Thu, 29 Apr 2021 20:52:42 +0200 Subject: [PATCH] decrease collision boundaries of player --- src/Types/Player.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Types/Player.hs b/src/Types/Player.hs index 9bfaa0a..ed11554 100644 --- a/src/Types/Player.hs +++ b/src/Types/Player.hs @@ -163,8 +163,8 @@ instance Mass Pituicat where instance Collidible Pituicat where boundary _ = - ( V2 (-25) (-25) - , V2 25 25 + ( V2 (-18) (-25) + , V2 25 15 ) collide cat _ NoCollision = cat