diff options
author | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 14:00:23 +0000 |
---|---|---|
committer | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-21 14:00:23 +0000 |
commit | 7475d4859a56a988fc36372a277c0c007d0123a5 (patch) | |
tree | 34cab3771144109052aeb96ed6c64779d354663b /src/map/npc.h | |
parent | 8877d3c6dcd9dbd203fd72924b60f3dcf448e5e9 (diff) | |
download | hercules-7475d4859a56a988fc36372a277c0c007d0123a5.tar.gz hercules-7475d4859a56a988fc36372a277c0c007d0123a5.tar.bz2 hercules-7475d4859a56a988fc36372a277c0c007d0123a5.tar.xz hercules-7475d4859a56a988fc36372a277c0c007d0123a5.zip |
Added mvp tomb system.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15908 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.h')
-rw-r--r-- | src/map/npc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/npc.h b/src/map/npc.h index 5e5bcb41a..47f6117d9 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -62,6 +62,11 @@ struct npc_data { short x,y; // destination coords unsigned short mapindex; // destination map } warp; + struct { + struct mob_data *md; + time_t kill_time; + char *killer_name; + } tomb; } u; }; |