Fixed: Show who messages come from

This commit is contained in:
Kyle Clemens 2014-06-17 01:03:19 -04:00
parent f62ba64b41
commit 7ba914d660
1 changed files with 4 additions and 4 deletions

View File

@ -967,7 +967,7 @@ class CPushMod : public CModule
msg += ": [" + nick.GetNick();
msg += "] " + message;
send_message(msg, title, channel.GetName());
send_message(msg, title, channel.GetName(), nick);
}
return CONTINUE;
@ -989,7 +989,7 @@ class CPushMod : public CModule
msg += ": " + nick.GetNick();
msg += " " + message;
send_message(msg, title, channel.GetName());
send_message(msg, title, channel.GetName(), nick);
}
return CONTINUE;
@ -1009,7 +1009,7 @@ class CPushMod : public CModule
CString msg = "From " + nick.GetNick();
msg += ": " + message;
send_message(msg, title, nick.GetNick());
send_message(msg, title, nick.GetNick(), nick);
}
return CONTINUE;
@ -1029,7 +1029,7 @@ class CPushMod : public CModule
CString msg = "* " + nick.GetNick();
msg += " " + message;
send_message(msg, title, nick.GetNick());
send_message(msg, title, nick.GetNick(), nick);
}
return CONTINUE;