| 1132 | } |
| 1133 | |
| 1134 | static int dfhack_random_new(lua_State *L) |
| 1135 | { |
| 1136 | Lua::make_lua_userdata<MersenneRNG>(L); |
| 1137 | |
| 1138 | lua_rawgetp(L, LUA_REGISTRYINDEX, &DFHACK_RANDOM_TOKEN); |
| 1139 | lua_setmetatable(L, -2); |
| 1140 | |
| 1141 | lua_insert(L, 1); |
| 1142 | return dfhack_random_init(L); |
| 1143 | } |
| 1144 | |
| 1145 | static int dfhack_random_random(lua_State *L) |
| 1146 | { |
nothing calls this directly
no test coverage detected