Don't move start position when carrying item.
This commit is contained in:
parent
fdfd875d8a
commit
cfd90c27c1
|
@ -136,8 +136,8 @@ static void tick(void)
|
|||
|
||||
if (u->carriedItem != NULL)
|
||||
{
|
||||
u->carriedItem->x = u->carriedItem->startX = u->x;
|
||||
u->carriedItem->y = u->carriedItem->startY = u->y;
|
||||
u->carriedItem->x = u->x;
|
||||
u->carriedItem->y = u->y;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue