From 165cafaf04109b94cd8e2594ff385fd6d70f97b5 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 15 Feb 2018 07:50:05 +0000 Subject: [PATCH] Allow items to be picked up sooner after they are dropped. --- src/world/entities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/entities.c b/src/world/entities.c index 9c9f7af..eecc5b2 100644 --- a/src/world/entities.c +++ b/src/world/entities.c @@ -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; }