From 4419635fcc037d8e9d95a96fab9a2feaf6f76880 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 28 Mar 2021 23:09:07 +0200 Subject: [PATCH] BUGFIX wrong itype in InitItems --- Source/items.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/items.cpp b/Source/items.cpp index fbcce158b..2b1f07b05 100644 --- a/Source/items.cpp +++ b/Source/items.cpp @@ -634,7 +634,7 @@ void InitItems() numitems = 0; for (i = 0; i < MAXITEMS; i++) { - item[i]._itype = ITYPE_MISC; + item[i]._itype = ITYPE_MISC; // BUGFIX Should be ITYPE_NONE item[i]._ix = 0; item[i]._iy = 0; item[i]._iAnimFlag = FALSE;