diff --git a/src/lua_playerlib.c b/src/lua_playerlib.c
index 5f034c29d1439d6683494ec57248ed6dbf873228..cbbdc67fe6d3d869469b8f12c92a75af935f05b8 100644
--- a/src/lua_playerlib.c
+++ b/src/lua_playerlib.c
@@ -727,6 +727,14 @@ static int kartstuff_get(lua_State *L)
 	kartstufftype_t ks = luaL_checkinteger(L, 2);
 	if (ks >= NUMKARTSTUFF)
 		return luaL_error(L, LUA_QL("kartstufftype_t") " cannot be %u", ks);
+
+	// V1 COMPATIBILITY THING
+	if (ks == k_lapanimation || ks == k_cardanimation || ks == k_yougotem)
+	{
+		lua_pushinteger(L, kartstuff[ks] / FRACUNIT);
+		return 1;
+	}
+
 	lua_pushinteger(L, kartstuff[ks]);
 	return 1;
 }
@@ -743,6 +751,14 @@ static int kartstuff_set(lua_State *L)
 		return luaL_error(L, "Do not alter player_t in HUD rendering code!");
 	if (hook_cmd_running)
 		return luaL_error(L, "Do not alter player_t in BuildCMD code!");
+
+	// V1 COMPATIBILITY THING
+	if (ks == k_lapanimation || ks == k_cardanimation || ks == k_yougotem)
+	{
+		kartstuff[ks] = i * FRACUNIT;
+		return 0;
+	}
+
 	kartstuff[ks] = i;
 	return 0;
 }