Skip to content

Commit

Permalink
[PvPPunishment,Shared] Streamlined some command usage wording
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteFang5 committed Aug 5, 2022
1 parent 4939850 commit a093398
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions PvPPunishment/Systems/PvPPunishmentSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private static void PruneOffenses()
}
}

[Command("ispunished", "ispunished [<playername>]", "Tell you if the the given player (or yourself when no playername is given) currently has the PvP Punishment buff", true)]
[Command("ispunished", "ispunished [<player-name>]", "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;
Expand All @@ -241,7 +241,7 @@ private static void OnIsPunishedPlayerCommand(Command command)
command.Use();
}

[Command("punish", "punish [<playername>]", "Adds (or refreshes) the PvP Punishment buff for the given player (or yourself when no playername is given)", true)]
[Command("punish", "punish [<player-name>]", "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;
Expand All @@ -255,7 +255,7 @@ private static void OnPunishPlayerCommand(Command command)
command.Use();
}

[Command("unpunish", "unpunish [<playername>]", "Removes the PvP Punishment buff for the given player (or yourself when no playername is given)", true)]
[Command("unpunish", "unpunish [<player-name>]", "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;
Expand Down
4 changes: 2 additions & 2 deletions Shared/HighestGearScoreSystem/HighestGearScoreSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private static void OnVampireDowned(Entity killer, Entity victim)
_gearScoreData.Remove(victumUser.PlatformId);
}

[Command("highestgs,hgs,higs,highgs,highestgearscore", "highestgs [<playername>]", "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 [<player-name>]", "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;
Expand All @@ -161,7 +161,7 @@ private static void OnHighestGearScoreCommand(Command command)
}
}

[Command("clearhgs,resethgs,clearhighestgearscore,resethighestgearscore", "clearhgs [<playername>]", "Removes the current Highest Gear Score record for the given player (or yourself when noplayername is given)", true)]
[Command("clearhgs,resethgs,clearhighestgearscore,resethighestgearscore", "clearhgs [<player-name>]", "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;
Expand Down

0 comments on commit a093398

Please sign in to comment.