aboutsummaryrefslogtreecommitdiff
path: root/src/lua.c
diff options
context:
space:
mode:
authorame <[email protected]>2025-01-22 02:45:23 -0600
committerame <[email protected]>2025-01-22 02:45:23 -0600
commit08cddd087a95bc54c0804d3f81a792cbfc40640a (patch)
tree0de207c53c902fc86fedb9a6196e4abebbd5277d /src/lua.c
parent7a11601d5f97c5bcf93eb7d9b534ef39cedb58a8 (diff)
work on websockets
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua.c b/src/lua.c
index d6a5523..f98a4a4 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -144,8 +144,8 @@ void luaI_deepcopy(lua_State* src, lua_State* dest, enum deep_copy_flags flags){
break;
default:
printf("unknown type %i vs (old)%i\n",lua_type(src, -1), type);
- abort();
- lua_pushnumber(dest, 5);
+ //abort();
+ lua_pushnil(dest);
break;
}
int tidx = lua_gettop(dest);