From 30f07276b10f064d8dd6c0b7214e6b23b3b657a6 Mon Sep 17 00:00:00 2001 From: WhiteFang Date: Sat, 6 Aug 2022 19:29:32 +0200 Subject: [PATCH] [PvPLeaderboard] Fixed a missing optional command parameter for the 'pvpstats' commands --- PvPLeaderboard/Systems/PvPLeaderboardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs b/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs index ec00d2a..d74424f 100644 --- a/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs +++ b/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs @@ -120,7 +120,7 @@ private static void OnVampireDowned(Entity killer, Entity victim) } } - [Command("pvpstats,pvp", "pvpstats", "Shows your current pvp stats (kills, deaths & K/D ratio).")] + [Command("pvpstats,pvp", "pvpstats []", "Shows your current pvp stats (kills, deaths & K/D ratio).")] private static void OnPvPStatsCommand(Command command) { var entityManager = VWorld.Server.EntityManager;