From 62af38d3fc2b3dbc983cf46304849aa5572ca147 Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Thu, 16 Oct 2014 22:53:45 -0400 Subject: [PATCH] Added steam profile link to !steam command. --- RenX.Commands/RenX_Commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RenX.Commands/RenX_Commands.cpp b/RenX.Commands/RenX_Commands.cpp index 6a9c0fc..f023b76 100644 --- a/RenX.Commands/RenX_Commands.cpp +++ b/RenX.Commands/RenX_Commands.cpp @@ -467,7 +467,7 @@ void SteamIRCCommand::trigger(IRC_Bot *source, const Jupiter::ReadableString &ch { msg += "is using steam ID " IRCBOLD; msg += server->formatSteamID(player); - msg += IRCBOLD; + msg.aformat(IRCBOLD "; Steam Profile: " IRCBOLD "http://www.steamcommunity.com/profiles/%llu" IRCBOLD, player->steamid); } else msg += "is not using steam."; source->sendMessage(channel, msg);