Don't move start position when carrying item.

This commit is contained in:
Steve 2018-03-08 07:53:57 +00:00
parent fdfd875d8a
commit cfd90c27c1
1 changed files with 2 additions and 2 deletions

View File

@ -136,8 +136,8 @@ static void tick(void)
if (u->carriedItem != NULL) if (u->carriedItem != NULL)
{ {
u->carriedItem->x = u->carriedItem->startX = u->x; u->carriedItem->x = u->x;
u->carriedItem->y = u->carriedItem->startY = u->y; u->carriedItem->y = u->y;
} }
} }