diff options
-rw-r--r-- | src/net/eathena/messageout.cpp | 1 | ||||
-rw-r--r-- | src/net/tmwa/messageout.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/net/eathena/messageout.cpp b/src/net/eathena/messageout.cpp index 1ca2311ff..2f2f5b58a 100644 --- a/src/net/eathena/messageout.cpp +++ b/src/net/eathena/messageout.cpp @@ -137,6 +137,7 @@ void MessageOut::writeCoordinates(const uint16_t x, default: // OOPSIE! Impossible or unknown direction = static_cast<unsigned char>(-1); + break; } data[2] |= direction; PacketCounters::incOutBytes(3); diff --git a/src/net/tmwa/messageout.cpp b/src/net/tmwa/messageout.cpp index 7a96497ee..2ec81f99c 100644 --- a/src/net/tmwa/messageout.cpp +++ b/src/net/tmwa/messageout.cpp @@ -139,6 +139,7 @@ void MessageOut::writeCoordinates(const uint16_t x, default: // OOPSIE! Impossible or unknown direction = static_cast<unsigned char>(-1); + break; } data[2] |= direction; PacketCounters::incOutBytes(3); |