diff options
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 5314916..a925430 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -2301,9 +2301,9 @@ int do_init_npc (void) || (j && line[j - 1] == ','))) line[j++] = ' '; } - else if (line[i] == '\t') + else if (line[i] == '\t' || line[i] == '|') { - if (!(j && line[j - 1] == '\t')) + if (!(j && (line[j - 1] == '\t' || line[j - 1] == '|'))) line[j++] = '\t'; } else |