Job Improvement Project - Genetic (#3284)

* Fixes #2571.
* Updates Homunculus skills from kRO maintenance: http://ro.gnjoy.com/news/update/View.asp?seq=218&curpage=1
* Updates Genetic skills from kRO maintenance: http://ro.gnjoy.com/news/update/View.asp?seq=246&curpage=1
Thanks to @Tokeiburu, @Badarosk0, @Balferian, and @Haydrich!
This commit is contained in:
Aleos
2020-03-25 13:26:26 -04:00
committed by GitHub
parent 24ecebcaf3
commit 652d77eb02
22 changed files with 811 additions and 825 deletions

View File

@@ -1606,7 +1606,7 @@ void read_homunculus_expdb(void)
if (fp == NULL) {
if (i != 0)
continue;
ShowError("Can't read %s\n",line);
ShowError("read_homunculus_expdb: Can't read %s\n",line);
return;
}
while (fgets(line, sizeof(line), fp) && j < MAX_LEVEL) {
@@ -1618,7 +1618,7 @@ void read_homunculus_expdb(void)
break;
}
if (hexptbl[MAX_LEVEL - 1]) { // Last permitted level have to be 0!
ShowWarning("read_hexptbl: Reached max level in %s [%d]. Remaining lines were not read.\n ",path,MAX_LEVEL);
ShowWarning("read_homunculus_expdb: Reached max level in %s [%d]. Remaining lines were not read.\n ",path,MAX_LEVEL);
hexptbl[MAX_LEVEL - 1] = 0;
}
fclose(fp);