diff options
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/beingrecv.cpp | 2 | ||||
-rw-r--r-- | src/net/ea/chatrecv.cpp | 2 | ||||
-rw-r--r-- | src/net/ea/npcrecv.cpp | 2 | ||||
-rw-r--r-- | src/net/ea/partyrecv.cpp | 4 | ||||
-rw-r--r-- | src/net/ea/playerrecv.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/net/ea/beingrecv.cpp b/src/net/ea/beingrecv.cpp index 63d025556..20dfffef9 100644 --- a/src/net/ea/beingrecv.cpp +++ b/src/net/ea/beingrecv.cpp @@ -233,7 +233,7 @@ void BeingRecv::processBeingAction(Net::MessageIn &msg) case AttackType::TOUCH_SKILL: case AttackType::MISS: case AttackType::SKILLMISS: - UNIMPLIMENTEDPACKETFIELD(CAST_S32(type)); + UNIMPLEMENTEDPACKETFIELD(CAST_S32(type)); break; } BLOCK_END("BeingRecv::processBeingAction") diff --git a/src/net/ea/chatrecv.cpp b/src/net/ea/chatrecv.cpp index ee994b7e4..6b9ade23d 100644 --- a/src/net/ea/chatrecv.cpp +++ b/src/net/ea/chatrecv.cpp @@ -117,7 +117,7 @@ void ChatRecv::processWhisperResponseContinue(Net::MessageIn &msg, } break; default: - UNIMPLIMENTEDPACKETFIELD(type); + UNIMPLEMENTEDPACKETFIELD(type); break; } BLOCK_END("ChatRecv::processWhisperResponse") diff --git a/src/net/ea/npcrecv.cpp b/src/net/ea/npcrecv.cpp index 047d9ca50..461f3eec1 100644 --- a/src/net/ea/npcrecv.cpp +++ b/src/net/ea/npcrecv.cpp @@ -226,7 +226,7 @@ void NpcRecv::processNpcCommand(Net::MessageIn &msg) break; } default: - UNIMPLIMENTEDPACKETFIELD(cmd); + UNIMPLEMENTEDPACKETFIELD(cmd); break; } } diff --git a/src/net/ea/partyrecv.cpp b/src/net/ea/partyrecv.cpp index 2efab0286..88e055a89 100644 --- a/src/net/ea/partyrecv.cpp +++ b/src/net/ea/partyrecv.cpp @@ -85,7 +85,7 @@ void PartyRecv::processPartyExpSettingsContinue(Net::MessageIn &msg, break; default: case PartyShare::UNKNOWN: - UNIMPLIMENTEDPACKETFIELD(CAST_S32(exp)); + UNIMPLEMENTEDPACKETFIELD(CAST_S32(exp)); break; } } @@ -115,7 +115,7 @@ void PartyRecv::processPartyItemSettingsContinue(Net::MessageIn &msg, break; default: case PartyShare::UNKNOWN: - UNIMPLIMENTEDPACKETFIELD(CAST_S32(item)); + UNIMPLEMENTEDPACKETFIELD(CAST_S32(item)); break; } } diff --git a/src/net/ea/playerrecv.cpp b/src/net/ea/playerrecv.cpp index 73d513032..92b151b21 100644 --- a/src/net/ea/playerrecv.cpp +++ b/src/net/ea/playerrecv.cpp @@ -213,7 +213,7 @@ void PlayerRecv::processPlayerArrowMessage(Net::MessageIn &msg) // arrows equiped break; default: - UNIMPLIMENTEDPACKETFIELD(type); + UNIMPLEMENTEDPACKETFIELD(type); break; } BLOCK_END("PlayerRecv::processPlayerArrowMessage") |