From 3d5820da8b91f676a6b5663ff19ccc68c30905ff Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 20 May 2016 07:44:49 -0400 Subject: bug fixessss --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 375a270..e90ba0a 100644 --- a/main.cpp +++ b/main.cpp @@ -551,7 +551,7 @@ void logic(){ } } - if(e->isInside(ui::mouse) && player->isNear(*e)) { + if(e->isInside(ui::mouse) && player->isNear(e)) { e->near = true; if (e->type == OBJECTT) ObjectSelected = true; @@ -569,7 +569,7 @@ void logic(){ e->near = false; } } else if (e->type == MOBT) { - e->near = player->isNear(*e); + e->near = player->isNear(e); e->wander(); } } -- cgit v1.2.3