From 2b9b1e3bff351d43a0990295a90af36d703c882e Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Wed, 7 Nov 2018 18:37:06 -0500 Subject: [PATCH] These are integers, whoops --- src/dehacked.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dehacked.c b/src/dehacked.c index 057b9cea..500dfea8 100644 --- a/src/dehacked.c +++ b/src/dehacked.c @@ -9728,10 +9728,10 @@ static inline int lib_getenum(lua_State *L) lua_pushboolean(L, comeback); return 1; } else if (fastcmp(word,"wantedcalcdelay")) { - lua_pushboolean(L, wantedcalcdelay); + lua_pushinteger(L, wantedcalcdelay); return 1; } else if (fastcmp(word,"indirectitemcooldown")) { - lua_pushboolean(L, indirectitemcooldown); + lua_pushinteger(L, indirectitemcooldown); return 1; } else if (fastcmp(word,"thwompsactive")) { lua_pushboolean(L, thwompsactive);