diff options
-rw-r--r-- | src/net/ea/skillrecv.h | 1 | ||||
-rw-r--r-- | src/net/eathena/skillrecv.cpp | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/net/ea/skillrecv.h b/src/net/ea/skillrecv.h index 9ef7d511c..2ff5d1974 100644 --- a/src/net/ea/skillrecv.h +++ b/src/net/ea/skillrecv.h @@ -56,6 +56,7 @@ static const unsigned int RFAIL_REDGEM = 0x07; static const unsigned int RFAIL_BLUEGEM = 0x08; static const unsigned int RFAIL_OVERWEIGHT = 0x09; +static const unsigned int RFAIL_SUMMON = 19; static const unsigned int RFAIL_NEED_ITEM = 71; static const unsigned int RFAIL_NEED_EQUIPMENT = 72; diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp index dbd8f7166..2ddc05e28 100644 --- a/src/net/eathena/skillrecv.cpp +++ b/src/net/eathena/skillrecv.cpp @@ -265,9 +265,13 @@ void SkillRecv::processSkillFailed(Net::MessageIn &msg) txt.append(_("You need another blue gem!")); break; case RFAIL_OVERWEIGHT: - // TRANSLATORS: error message + // TRANSLATORS: error message txt.append(_("You're carrying to much to do this!")); break; + case RFAIL_SUMMON: + // TRANSLATORS: error message + txt.append(_("Fail summon.")); + break; case RFAIL_NEED_EQUIPMENT: { const int itemId = bskill >> 16; |