From 36a7f70fef4a637cdd02e0fb373b85fa697b0843 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 16 Mar 2020 14:56:32 -0400 Subject: [PATCH] make NPCs a pixel less thicc --- Shared/NPC.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/NPC.cs b/Shared/NPC.cs index 1e1d6ef..bcd4dcc 100644 --- a/Shared/NPC.cs +++ b/Shared/NPC.cs @@ -53,7 +53,7 @@ namespace SemiColinGames { private readonly Vector2 eyeOffset = new Vector2(4, -9); private readonly FSM fsm; - private readonly Vector2 halfSize = new Vector2(12, 24); + private readonly Vector2 halfSize = new Vector2(11, 24); public NPC(Vector2 position, int facing) { sprite = Sprites.Executioner;