From a093398a6782ad196fbbb570f47ab77ebd041d74 Mon Sep 17 00:00:00 2001 From: WhiteFang Date: Fri, 5 Aug 2022 15:54:48 +0200 Subject: [PATCH] [PvPPunishment,Shared] Streamlined some command usage wording --- PvPPunishment/Systems/PvPPunishmentSystem.cs | 6 +++--- Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PvPPunishment/Systems/PvPPunishmentSystem.cs b/PvPPunishment/Systems/PvPPunishmentSystem.cs index b1ded0b..3a7bde5 100644 --- a/PvPPunishment/Systems/PvPPunishmentSystem.cs +++ b/PvPPunishment/Systems/PvPPunishmentSystem.cs @@ -221,7 +221,7 @@ private static void PruneOffenses() } } - [Command("ispunished", "ispunished []", "Tell you if the the given player (or yourself when no playername is given) currently has the PvP Punishment buff", true)] + [Command("ispunished", "ispunished []", "Tell you if the the given player (or yourself when no playername is given) currently has the PvP Punishment buff", true)] private static void OnIsPunishedPlayerCommand(Command command) { var entityManager = VWorld.Server.EntityManager; @@ -241,7 +241,7 @@ private static void OnIsPunishedPlayerCommand(Command command) command.Use(); } - [Command("punish", "punish []", "Adds (or refreshes) the PvP Punishment buff for the given player (or yourself when no playername is given)", true)] + [Command("punish", "punish []", "Adds (or refreshes) the PvP Punishment buff for the given player (or yourself when no playername is given)", true)] private static void OnPunishPlayerCommand(Command command) { var entityManager = VWorld.Server.EntityManager; @@ -255,7 +255,7 @@ private static void OnPunishPlayerCommand(Command command) command.Use(); } - [Command("unpunish", "unpunish []", "Removes the PvP Punishment buff for the given player (or yourself when no playername is given)", true)] + [Command("unpunish", "unpunish []", "Removes the PvP Punishment buff for the given player (or yourself when no playername is given)", true)] private static void OnUnPunishPlayerCommand(Command command) { var entityManager = VWorld.Server.EntityManager; diff --git a/Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs b/Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs index 1913346..a404849 100644 --- a/Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs +++ b/Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs @@ -140,7 +140,7 @@ private static void OnVampireDowned(Entity killer, Entity victim) _gearScoreData.Remove(victumUser.PlatformId); } - [Command("highestgs,hgs,higs,highgs,highestgearscore", "highestgs []", "Tells you what the highest gear score is for the given player (or yourself when noplayername is given)", true)] + [Command("highestgs,hgs,higs,highgs,highestgearscore", "highestgs []", "Tells you what the highest gear score is for the given player (or yourself when noplayername is given)", true)] private static void OnHighestGearScoreCommand(Command command) { var entityManager = VWorld.Server.EntityManager; @@ -161,7 +161,7 @@ private static void OnHighestGearScoreCommand(Command command) } } - [Command("clearhgs,resethgs,clearhighestgearscore,resethighestgearscore", "clearhgs []", "Removes the current Highest Gear Score record for the given player (or yourself when noplayername is given)", true)] + [Command("clearhgs,resethgs,clearhighestgearscore,resethighestgearscore", "clearhgs []", "Removes the current Highest Gear Score record for the given player (or yourself when noplayername is given)", true)] private static void OnResetHighestGearScoreCommand(Command command) { var entityManager = VWorld.Server.EntityManager;