diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-03-25 23:35:10 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-03-25 23:35:10 +0000 |
commit | 9d3fa3c50c0f0668b20ff0d5b7f760f46290e21c (patch) | |
tree | 6f48e06bc837f5bc7bf35bb54e3e205b2232762c /src/net/eathena/beingrecv.cpp | |
parent | 6243e38c2f13754d11b750ffee069dd1542f905e (diff) | |
download | plus-9d3fa3c50c0f0668b20ff0d5b7f760f46290e21c.tar.gz plus-9d3fa3c50c0f0668b20ff0d5b7f760f46290e21c.tar.bz2 plus-9d3fa3c50c0f0668b20ff0d5b7f760f46290e21c.tar.xz plus-9d3fa3c50c0f0668b20ff0d5b7f760f46290e21c.zip |
Typofix Guil -> Guild and insert And
See merge request mana/plus!64
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 7d5e810dc..da175c2e8 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1747,12 +1747,12 @@ void BeingRecv::processNameResponseTitle(Net::MessageIn &msg) } } -void BeingRecv::processPlayerGuilPartyInfo(Net::MessageIn &msg) +void BeingRecv::processPlayerGuildAndPartyInfo(Net::MessageIn &msg) { - BLOCK_START("BeingRecv::processPlayerGuilPartyInfo") + BLOCK_START("BeingRecv::processPlayerGuildAndPartyInfo") if (actorManager == nullptr) { - BLOCK_END("BeingRecv::processPlayerGuilPartyInfo") + BLOCK_END("BeingRecv::processPlayerGuildAndPartyInfo") return; } @@ -1778,15 +1778,15 @@ void BeingRecv::processPlayerGuilPartyInfo(Net::MessageIn &msg) msg.readString(24, "guild name"); msg.readString(24, "guild pos"); } - BLOCK_END("BeingRecv::processPlayerGuilPartyInfo") + BLOCK_END("BeingRecv::processPlayerGuildAndPartyInfo") } -void BeingRecv::processPlayerGuilPartyInfo2(Net::MessageIn &msg) +void BeingRecv::processPlayerGuildAndPartyInfo2(Net::MessageIn &msg) { - BLOCK_START("BeingRecv::processPlayerGuilPartyInfo2") + BLOCK_START("BeingRecv::processPlayerGuildAndPartyInfo2") if (actorManager == nullptr) { - BLOCK_END("BeingRecv::processPlayerGuilPartyInfo2") + BLOCK_END("BeingRecv::processPlayerGuildAndPartyInfo2") return; } @@ -1814,7 +1814,7 @@ void BeingRecv::processPlayerGuilPartyInfo2(Net::MessageIn &msg) } // +++ need use it for show player title msg.readInt32("title"); - BLOCK_END("BeingRecv::processPlayerGuilPartyInfo2") + BLOCK_END("BeingRecv::processPlayerGuildAndPartyInfo2") } void BeingRecv::processBeingRemoveSkill(Net::MessageIn &msg) |