diff options
author | Haru <haru@dotalux.com> | 2019-08-26 00:56:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 00:56:58 +0200 |
commit | ad7ebbedf81c54fdb43f4b4e41aed9fd48543e47 (patch) | |
tree | aaace787d264862281f8dce558b7cb7e03d0bf71 /src/map/homunculus.c | |
parent | 9f4065570cff47b23eba3c862e994869520a6f8a (diff) | |
parent | 1feeb9dc68f4c4125a4fde018456a6432632b042 (diff) | |
download | hercules-ad7ebbedf81c54fdb43f4b4e41aed9fd48543e47.tar.gz hercules-ad7ebbedf81c54fdb43f4b4e41aed9fd48543e47.tar.bz2 hercules-ad7ebbedf81c54fdb43f4b4e41aed9fd48543e47.tar.xz hercules-ad7ebbedf81c54fdb43f4b4e41aed9fd48543e47.zip |
Merge pull request #2513 from Emistry/itemdb_read_combos
Fix missing file path in console.
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r-- | src/map/homunculus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/homunculus.c b/src/map/homunculus.c index d3e815872..31744f479 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -1375,7 +1375,7 @@ static void homunculus_exp_db_read(void) homun->dbs->exptable[MAX_LEVEL - 1] = 0; } fclose(fp); - ShowStatus("Done reading '"CL_WHITE"%d"CL_RESET"' levels in '"CL_WHITE"%s"CL_RESET"'.\n", j, filename[i]); + ShowStatus("Done reading '"CL_WHITE"%d"CL_RESET"' levels in '"CL_WHITE"%s/%s"CL_RESET"'.\n", j, map->db_path, filename[i]); } } |