[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
+1 -1
View File
@@ -25,7 +25,7 @@ void command_npcedit(Client *c, const Seperator *sep)
auto npc_id = t->GetNPCTypeID();
auto npc_id_string = fmt::format(
"NPC ID {}",
Strings::Commify(std::to_string(npc_id))
npc_id
);
auto n = NpcTypesRepository::FindOne(content_db, npc_id);