From 6d5ce419e19e77fb599ad6bc0d17ab1494d1d5bc Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Sun, 8 Mar 2015 13:35:44 -0400 Subject: [PATCH] "modlist" now displays Name instead of UUID (defaults to UUID if no Name is found). --- RenX.ModSystem/RenX_ModSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RenX.ModSystem/RenX_ModSystem.cpp b/RenX.ModSystem/RenX_ModSystem.cpp index a2f5170..b94145f 100644 --- a/RenX.ModSystem/RenX_ModSystem.cpp +++ b/RenX.ModSystem/RenX_ModSystem.cpp @@ -854,7 +854,7 @@ void ModListIRCCommand::trigger(IRC_Bot *source, const Jupiter::ReadableString & section = pluginInstance.modsFile.getSection(--i); if (section->get(STRING_LITERAL_AS_REFERENCE("Group")).equalsi(group->name)) { - msg += section->getName(); + msg += section->get(STRING_LITERAL_AS_REFERENCE("Name"), section->getName()); msg += STRING_LITERAL_AS_REFERENCE(", "); } }