diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 17:54:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 17:55:13 +0300 |
commit | 6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa (patch) | |
tree | 4c102c1f6bf2fb663cf4dec21aa1bace12ce9aec /src/map/mob.h | |
parent | eb684950f70502f070811465b2d0488484611b3b (diff) | |
download | hercules-6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa.tar.gz hercules-6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa.tar.bz2 hercules-6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa.tar.xz hercules-6612f0bb52d11c2a097f80174cbbb2e98e2ff4aa.zip |
Show item drop effects only if monster dropping non looted items.
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index 83e022899..98d64873b 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -406,6 +406,7 @@ enum mob_id { // The data structures for storing delayed item drops struct item_drop { struct item item_data; + bool showdropeffect; struct item_drop* next; }; struct item_drop_list { |