fix: Fixes typo in ResetRng command (#1211)

This commit is contained in:
Kamron Batman 2022-10-27 23:29:51 -07:00 committed by GitHub
parent 49e6c6f2d1
commit 5151ff66b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,10 +6,10 @@ public class ResetRng
{
public static void Initialize()
{
CommandSystem.Register("RestRng", AccessLevel.Administrator, ResetRng_OnCommand);
CommandSystem.Register("ResetRng", AccessLevel.Administrator, ResetRng_OnCommand);
}
[Usage("RestRng")]
[Usage("ResetRng")]
[Description(
"Resets the global RNG. Use with care! Do not reset often as this will affect the over-all distribution."
)]