From 5151ff66b5c9d70bf49feea3699487323b6203de Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 27 Oct 2022 23:29:51 -0700 Subject: [PATCH] fix: Fixes typo in ResetRng command (#1211) --- Projects/UOContent/Commands/ResetRng.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/UOContent/Commands/ResetRng.cs b/Projects/UOContent/Commands/ResetRng.cs index 9b28d19fc..7927a0a4b 100644 --- a/Projects/UOContent/Commands/ResetRng.cs +++ b/Projects/UOContent/Commands/ResetRng.cs @@ -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." )]