X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcoremods%2Fcore_info%2Fcmd_info.cpp;h=29518e376d9d43688a2eaafc42fbf9080691feca;hb=d2b94541fc95de18c25bf1b017c20d45cffb9f76;hp=54aa7e16eff9d863c87598dd750b665bb4a8a1c6;hpb=77730fd5f09f8fc193205654c8bba84d34365670;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/coremods/core_info/cmd_info.cpp b/src/coremods/core_info/cmd_info.cpp index 54aa7e16e..29518e376 100644 --- a/src/coremods/core_info/cmd_info.cpp +++ b/src/coremods/core_info/cmd_info.cpp @@ -31,14 +31,14 @@ CommandInfo::CommandInfo(Module* parent) } static const char* const lines[] = { - " -/\\- \2InspIRCd\2 -\\/-", + " -/\\- \002InspIRCd\002 -\\/-", " November 2002 - Present", " ", - "\2Core Developers\2:", + "\002Core Developers\002:", " Attila Molnar, Attila, ", " Peter Powell, SaberUK, ", " ", - "\2Former Developers\2:", + "\002Former Developers\002:", " Oliver Lupton, Om, ", " John Brooks, Special, ", " Dennis Friis, peavey, ", @@ -47,31 +47,30 @@ static const char* const lines[] = { " Matt Smith, dz, ", " Daniel De Graaf, danieldg, ", " ", - "\2Founding Developers\2:", + "\002Founding Developers\002:", " Craig Edwards, Brain, ", " Craig McLure, Craig, ", " Robin Burchell, w00t, ", " ", - "\2Active Contributors\2:", - " Adam", + "\002Active Contributors\002:", + " Adam linuxdaemon Sheogorath", " ", - "\2Former Contributors\2:", + "\002Former Contributors\002:", " dmb Zaba skenmy GreenReaper", " Dan Jason satmd owine", " Adremelech John2 jilles HiroP", " eggy Bricker AnMaster djGrrr", " nenolod Quension praetorian pippijn", - " CC jamie typobox43 Burlex (win32)", + " CC jamie typobox43 Burlex", " Stskeeps ThaPrince BuildSmart Thunderhacker", " Skip LeaChim Majic MacGyver", " Namegduf Ankit Phoenix Taros", " jackmcbarn ChrisTX Shawn Shutter", " ", - "\2Thanks To\2:", + "\002Thanks To\002:", " Asmo Brik fraggeln genius3000", - " Sheogorath", " ", - " Best experienced with: \2An IRC client\2", + " Best experienced with: \002An IRC client\002", NULL }; @@ -79,7 +78,7 @@ static const char* const lines[] = { */ CmdResult CommandInfo::Handle(User* user, const Params& parameters) { - if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName) + if (parameters.size() > 0 && !irc::equals(parameters[0], ServerInstance->Config->ServerName)) return CMD_SUCCESS; int i=0;