diff options
author | Haru <haru@dotalux.com> | 2020-03-09 00:38:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 00:38:45 +0100 |
commit | 2ec28927c81008a0e17d7e95e70d207de0954d83 (patch) | |
tree | e4b9042e09e60861726d8b3faae9f6bb400bf97b /src/map/script.h | |
parent | f80d9a72ae9e266d123d5f12ea751645691887ce (diff) | |
parent | 5baef19736fbe26f8b0ac23e61059c14afb6211c (diff) | |
download | hercules-2ec28927c81008a0e17d7e95e70d207de0954d83.tar.gz hercules-2ec28927c81008a0e17d7e95e70d207de0954d83.tar.bz2 hercules-2ec28927c81008a0e17d7e95e70d207de0954d83.tar.xz hercules-2ec28927c81008a0e17d7e95e70d207de0954d83.zip |
Merge pull request #2648 from Kenpachi2k13/itemskill_fix
Fix itemskill() script command
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.h b/src/map/script.h index ed860368c..511497a66 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -572,7 +572,7 @@ enum mado_type { **/ enum itemskill_flag { ISF_NONE = 0x00, - ISF_IGNORECONDITIONS = 0x01, // Ignore skill conditions and don't consume them. + ISF_CHECKCONDITIONS = 0x01, // Check skill conditions and consume them. ISF_INSTANTCAST = 0x02, // Cast skill instantaneously. ISF_CASTONSELF = 0x04, // Forcefully cast skill on invoking character without showing the target selection cursor. }; |