summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
authorKenpachi Developer <Kenpachi.Developer@gmx.de>2020-01-20 10:08:00 +0100
committerHaru <haru@dotalux.com>2020-02-09 23:46:56 +0100
commit38a504a04a2c864938ef3e105d0ce22332ff0b7a (patch)
tree1da723d240928039361e0c4f89e810ae2c93cc73 /src/map/script.h
parent1098b588625774ca2cf4e05527b00fd4d0187919 (diff)
downloadhercules-38a504a04a2c864938ef3e105d0ce22332ff0b7a.tar.gz
hercules-38a504a04a2c864938ef3e105d0ce22332ff0b7a.tar.bz2
hercules-38a504a04a2c864938ef3e105d0ce22332ff0b7a.tar.xz
hercules-38a504a04a2c864938ef3e105d0ce22332ff0b7a.zip
Added a new option flag to itemskill() script command, to be able to cast a skill without cast time.
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/script.h b/src/map/script.h
index c981a895d..8167a9efd 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -570,6 +570,7 @@ enum mado_type {
enum itemskill_flag {
ISF_NONE = 0x00,
ISF_IGNORECONDITIONS = 0x01, // Ignore skill conditions and don't consume them.
+ ISF_INSTANTCAST = 0x02, // Cast skill instantaneously.
};
/**