From 60059f45d4e1c95974d32c13df4d08d7f4c3ce6a Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 2 May 2021 17:12:06 +0000 Subject: [PATCH] change /d + /ga prefix --- ReallifeGamemode.Server/Commands/FactionCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/FactionCommands.cs b/ReallifeGamemode.Server/Commands/FactionCommands.cs index 52fa7f6b..71039fd7 100644 --- a/ReallifeGamemode.Server/Commands/FactionCommands.cs +++ b/ReallifeGamemode.Server/Commands/FactionCommands.cs @@ -86,7 +86,7 @@ namespace ReallifeGamemode.Server.Commands if (f?.GangOwned == true) { - factionName = user.Faction.Name; + factionName = user.Faction.Name + " – " + user.FactionRank.RankName; } else { @@ -166,7 +166,7 @@ namespace ReallifeGamemode.Server.Commands if (f?.StateOwned ?? false) { - factionName = user.Faction.Name; + factionName = user.Faction.Name + " – " + user.FactionRank.RankName; } else {