| 1170 | return 1; |
| 1171 | } |
| 1172 | static int dfhack_random_unitrandom(lua_State *L) |
| 1173 | { |
| 1174 | lua_pushnumber(L, check_random_native(L, 1)->unitrandom()); |
| 1175 | return 1; |
| 1176 | } |
| 1177 | static int dfhack_random_unitvector(lua_State *L) |
| 1178 | { |
| 1179 | MersenneRNG *prng = check_random_native(L, 1); |
nothing calls this directly
no test coverage detected