Allow items to be picked up sooner after they are dropped.

This commit is contained in:
Steve 2018-02-15 07:50:05 +00:00
parent 15857a8dfd
commit 165cafaf04
1 changed files with 1 additions and 1 deletions

View File

@ -965,7 +965,7 @@ void dropCarriedItem(void)
i->dx = 0;
i->dy = -9;
i->flags &= ~EF_GONE;
i->thinkTime = FPS;
i->thinkTime = FPS / 2;
e->carriedItem = NULL;
}