| 1160 | return 1; |
| 1161 | } |
| 1162 | static int dfhack_random_drandom0(lua_State *L) |
| 1163 | { |
| 1164 | lua_pushnumber(L, check_random_native(L, 1)->drandom0()); |
| 1165 | return 1; |
| 1166 | } |
| 1167 | static int dfhack_random_drandom1(lua_State *L) |
| 1168 | { |
| 1169 | lua_pushnumber(L, check_random_native(L, 1)->drandom1()); |
nothing calls this directly
no test coverage detected