Browse Source

Added steam profile link to !steam command.

pull/3/head
JustinAJ 10 years ago
parent
commit
62af38d3fc
  1. 2
      RenX.Commands/RenX_Commands.cpp

2
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 += "is using steam ID " IRCBOLD;
msg += server->formatSteamID(player); 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."; else msg += "is not using steam.";
source->sendMessage(channel, msg); source->sendMessage(channel, msg);

Loading…
Cancel
Save