mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-22 13:30:06 +00:00
Include emails in chat dump
This commit is contained in:
parent
57e9834786
commit
8a294cb2be
@ -226,10 +226,10 @@ static void emailSend(CNSocket* sock, CNPacketData* data) {
|
|||||||
|
|
||||||
INITSTRUCT(sP_FE2CL_REP_PC_SEND_EMAIL_SUCC, resp);
|
INITSTRUCT(sP_FE2CL_REP_PC_SEND_EMAIL_SUCC, resp);
|
||||||
|
|
||||||
if (pkt->iCash || pkt->aItem[0].ItemInven.iID) {
|
|
||||||
// if there are item or taro attachments
|
|
||||||
Player otherPlr = {};
|
Player otherPlr = {};
|
||||||
Database::getPlayer(&otherPlr, pkt->iTo_PCUID);
|
Database::getPlayer(&otherPlr, pkt->iTo_PCUID);
|
||||||
|
if (pkt->iCash || pkt->aItem[0].ItemInven.iID) {
|
||||||
|
// if there are item or taro attachments
|
||||||
if (otherPlr.iID != 0 && plr->PCStyle2.iPayzoneFlag != otherPlr.PCStyle2.iPayzoneFlag) {
|
if (otherPlr.iID != 0 && plr->PCStyle2.iPayzoneFlag != otherPlr.PCStyle2.iPayzoneFlag) {
|
||||||
// if the players are not in the same time period
|
// if the players are not in the same time period
|
||||||
INITSTRUCT(sP_FE2CL_REP_PC_SEND_EMAIL_FAIL, resp);
|
INITSTRUCT(sP_FE2CL_REP_PC_SEND_EMAIL_FAIL, resp);
|
||||||
@ -304,6 +304,10 @@ static void emailSend(CNSocket* sock, CNPacketData* data) {
|
|||||||
resp.iTo_PCUID = pkt->iTo_PCUID;
|
resp.iTo_PCUID = pkt->iTo_PCUID;
|
||||||
|
|
||||||
sock->sendPacket(resp, P_FE2CL_REP_PC_SEND_EMAIL_SUCC);
|
sock->sendPacket(resp, P_FE2CL_REP_PC_SEND_EMAIL_SUCC);
|
||||||
|
|
||||||
|
std::string logEmail = "[Email] " + PlayerManager::getPlayerName(plr, true) + " (to " + PlayerManager::getPlayerName(&otherPlr, true) + "): <" + email.SubjectLine + ">\n" + email.MsgBody;
|
||||||
|
std::cout << logEmail << std::endl;
|
||||||
|
Chat::dump.push_back(logEmail);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Email::init() {
|
void Email::init() {
|
||||||
|
Loading…
Reference in New Issue
Block a user