[Cleanup] Remove Strings::Commify from all identifier values (#3528)

# Notes
- Removes commification from unique identifiers.
This commit is contained in:
Alex King
2023-08-01 23:59:47 -04:00
committed by GitHub
parent 00a8a0cf88
commit 2dc2bac456
18 changed files with 35 additions and 35 deletions
+3 -3
View File
@@ -10,7 +10,7 @@ void FindFaction(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Faction {} | {}",
Strings::Commify(faction_id),
faction_id,
faction_name
).c_str()
);
@@ -22,7 +22,7 @@ void FindFaction(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Faction ID {} was not found.",
Strings::Commify(faction_id)
faction_id
).c_str()
);
@@ -48,7 +48,7 @@ void FindFaction(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Faction {} | {}",
Strings::Commify(faction_id),
faction_id,
faction_name
).c_str()
);