diff options
author | shennetsind <notind@gmail.com> | 2013-06-27 10:36:11 -0700 |
---|---|---|
committer | shennetsind <notind@gmail.com> | 2013-06-27 10:36:11 -0700 |
commit | 15398c9b90693707c3e49c349e24e6dd655f12a9 (patch) | |
tree | 8ba6c03f3e6f8775e854fd109d31ae6b64110e1a /src/map/npc.c | |
parent | e5b1d3bdff66c9475755651a94d20057fc4d02dd (diff) | |
parent | ee23711201ddbcd9d92712e8d2b9c1e3c05e7194 (diff) | |
download | hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.gz hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.bz2 hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.xz hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.zip |
Merge pull request #48 from CairoLee/master
Implemented notomb Mapflag
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 2dd02e88f..df9a9426f 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -3372,6 +3372,8 @@ const char* npc_parse_mapflag(char* w1, char* w2, char* w3, char* w4, const char map[m].flag.guildlock=state; else if (!strcmpi(w3,"reset")) map[m].flag.reset=state; + else if (!strcmpi(w3,"notomb")) + map[m].flag.notomb=state; else if (!strcmpi(w3,"adjust_unit_duration")) { int skill_id, k; char skill_name[MAP_ZONE_MAPFLAG_LENGTH], modifier[MAP_ZONE_MAPFLAG_LENGTH]; |