diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-14 00:28:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-14 00:42:56 +0300 |
commit | 55a6d5e67d528910f94c0e20c497cd6042aff81e (patch) | |
tree | 3b7f3a4d3dc90aff9dce42a1197b5910de464543 /src/net/eathena/skillrecv.cpp | |
parent | 286554f730ca3fca716bf78e912e807a72dfee66 (diff) | |
download | plus-55a6d5e67d528910f94c0e20c497cd6042aff81e.tar.gz plus-55a6d5e67d528910f94c0e20c497cd6042aff81e.tar.bz2 plus-55a6d5e67d528910f94c0e20c497cd6042aff81e.tar.xz plus-55a6d5e67d528910f94c0e20c497cd6042aff81e.zip |
Move skill error defines into separate file.
Diffstat (limited to 'src/net/eathena/skillrecv.cpp')
-rw-r--r-- | src/net/eathena/skillrecv.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp index 75e6464f4..5ebf59178 100644 --- a/src/net/eathena/skillrecv.cpp +++ b/src/net/eathena/skillrecv.cpp @@ -27,6 +27,8 @@ #include "being/localplayer.h" #include "being/playerinfo.h" +#include "const/net/skill.h" + #include "enums/resources/notifytypes.h" #include "gui/widgets/createwidget.h" @@ -52,6 +54,11 @@ #include "debug.h" +static const unsigned int RFAIL_SUMMON = 19; +static const unsigned int RFAIL_NEED_ITEM = 71; +static const unsigned int RFAIL_NEED_EQUIPMENT = 72; +static const unsigned int RFAIL_SPIRITS = 74; + namespace EAthena { |