[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 FindAA(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"AA {} | {}",
Strings::Commify(aa_id),
aa_id,
aa_name
).c_str()
);
@@ -22,7 +22,7 @@ void FindAA(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"AA ID {} was not found.",
Strings::Commify(aa_id)
aa_id
).c_str()
);
@@ -51,7 +51,7 @@ void FindAA(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"AA {} | {}",
Strings::Commify(a.first),
a.first,
aa_name
).c_str()
);
+2 -2
View File
@@ -12,7 +12,7 @@ void FindCharacter(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Character ID {} does not exist or is invalid.",
Strings::Commify(character_id)
character_id
).c_str()
);
@@ -23,7 +23,7 @@ void FindCharacter(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Character ID {} | {}",
Strings::Commify(character_id),
character_id,
e.name
).c_str()
);
+2 -2
View File
@@ -13,7 +13,7 @@ void FindCurrency(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"There is no currency with an item ID of {}.",
Strings::Commify(item_id)
item_id
).c_str()
);
@@ -26,7 +26,7 @@ void FindCurrency(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Item ID {} does not exist.",
Strings::Commify(item_id)
item_id
).c_str()
);
+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()
);
+1 -1
View File
@@ -104,7 +104,7 @@ void FindItem(Client *c, const Seperator *sep)
"{} | {} ({})",
summon_links,
database.CreateItemLink(e),
Strings::Commify(item->ID)
item->ID
).c_str()
);
+1 -1
View File
@@ -47,7 +47,7 @@ void FindNPCType(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"NPC {} | {}{}",
Strings::Commify(row[0]),
row[0],
row[1],
(
can_spawn_npcs ?
+2 -2
View File
@@ -19,7 +19,7 @@ void FindRecipe(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Recipe ID {} could not be found.",
Strings::Commify(recipe_id)
recipe_id
).c_str()
);
return;
@@ -29,7 +29,7 @@ void FindRecipe(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Recipe {} | {}{}",
Strings::Commify(recipe_id),
recipe_id,
l[0].name,
(
can_view_recipes ?
+3 -3
View File
@@ -16,7 +16,7 @@ void FindSpell(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Spell ID {} was not found.",
Strings::Commify(spell_id)
spell_id
).c_str()
);
@@ -27,7 +27,7 @@ void FindSpell(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Spell {} | {}",
Strings::Commify(spell_id),
spell_id,
spells[spell_id].name
).c_str()
);
@@ -53,7 +53,7 @@ void FindSpell(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Spell {} | {}{}",
Strings::Commify(spell_id),
spell_id,
spell_name,
(
can_cast_spells ?
+3 -3
View File
@@ -18,7 +18,7 @@ void FindTask(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Task ID {} was not found.",
Strings::Commify(task_id)
task_id
).c_str()
);
@@ -29,7 +29,7 @@ void FindTask(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Task {} | {}",
Strings::Commify(task_id),
task_id,
task_name
).c_str()
);
@@ -52,7 +52,7 @@ void FindTask(Client *c, const Seperator *sep)
Chat::White,
fmt::format(
"Task {} | {}{}",
Strings::Commify(t.first),
t.first,
task_name,
(
can_assign_tasks ?