diff options
author | Fate <fate-tmw@googlemail.com> | 2008-11-22 01:15:44 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2008-11-22 01:15:44 -0700 |
commit | c70aa417cdc1ef4b475131bdda14a3aca4135577 (patch) | |
tree | 63e35b12c9d5b7e11c33e88cd1ab8fe04c9e11ba /src/map/magic-interpreter.h | |
parent | 7e9ef4d4154caf5c982e0753e9685c04ee52d913 (diff) | |
download | tmwa-c70aa417cdc1ef4b475131bdda14a3aca4135577.tar.gz tmwa-c70aa417cdc1ef4b475131bdda14a3aca4135577.tar.bz2 tmwa-c70aa417cdc1ef4b475131bdda14a3aca4135577.tar.xz tmwa-c70aa417cdc1ef4b475131bdda14a3aca4135577.zip |
Added NONMAGIC flag to distinguish `keyword' operations (such as `marry') from regular spells (keywords don't require spellcasting ability)
Diffstat (limited to 'src/map/magic-interpreter.h')
-rw-r--r-- | src/map/magic-interpreter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/magic-interpreter.h b/src/map/magic-interpreter.h index 9fc6308..26f6c5c 100644 --- a/src/map/magic-interpreter.h +++ b/src/map/magic-interpreter.h @@ -239,6 +239,7 @@ typedef struct letdef { #define SPELL_FLAG_LOCAL (1 << 0) // spell associated not with caster but with place #define SPELL_FLAG_SILENT (1 << 1) // spell invocation never uttered +#define SPELL_FLAG_NONMAGIC (1 << 2) // `magic word' only: don't require spellcasting ability typedef struct spell { char *name; |