summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 032516810..7ca3e7c54 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -8272,7 +8272,11 @@ int pc_readdb(void)
// 必要??値?み?み
memset(exp_table,0,sizeof(exp_table));
memset(max_level,0,sizeof(max_level));
- sprintf(line, "%s/exp.txt", db_path);
+#if REMODE
+ sprintf(line, "%s/re/exp.txt", db_path);
+#else
+ sprintf(line, "%s/pre-re/exp.txt", db_path);
+#endif
fp=fopen(line, "r");
if(fp==NULL){
ShowError("can't read %s\n", line);