summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index fc994f5..d302fe8 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -2133,9 +2133,13 @@ static int npc_parse_mapflag (char *w1, char *w2, char *w3, char *w4)
map[m].flag.rain = 1;
}
else if (strcmpi (w3, "no_player_drops") == 0)
- { // rain [Valaris]
+ { // no player drops [Jaxad0127]
map[m].flag.no_player_drops = 1;
}
+ else if (strcmpi (w3, "town") == 0)
+ { // town/safe zone [remoitnane]
+ map[m].flag.town = 1;
+ }
return 0;
}