This commit is contained in:
lizzie 2026-03-31 01:55:10 +00:00
parent 074ead14f3
commit 64387c4c10

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());
}
}