This commit is contained in:
lizzie 2026-03-31 01:55:10 +00:00
parent dc4db5a598
commit 46f19dbf6e

View file

@ -14,6 +14,6 @@ namespace Common::Random {
return g_random_device();
}
[[nodiscard]] std::mt19937 GetMT19937() noexcept {
return std::mt19937(g_random_device);
return std::mt19937(g_random_device());
}
}