summaryrefslogtreecommitdiff
path: root/src/map/itemdb.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-21 14:34:08 -0300
committershennetsind <ind@henn.et>2013-07-21 14:34:08 -0300
commitd680d0ccd5207a0f858b93d2c28997148bcc5f55 (patch)
tree20e07ff54be1fb315f96b4763231b43effc14c85 /src/map/itemdb.c
parent9bcb1423969870a6b60819e6f3846fe0235e28a9 (diff)
downloadhercules-d680d0ccd5207a0f858b93d2c28997148bcc5f55.tar.gz
hercules-d680d0ccd5207a0f858b93d2c28997148bcc5f55.tar.bz2
hercules-d680d0ccd5207a0f858b93d2c28997148bcc5f55.tar.xz
hercules-d680d0ccd5207a0f858b93d2c28997148bcc5f55.zip
Fixed Bug #7520
Added code to ensure 1st/2nd tabs are meeting the conditions; Special Thanks to Haruna, ToiletMaster http://hercules.ws/board/tracker/issue-7520-skill-point-error/ Also - Follow up 9bcb1423969870a6b60819e6f3846fe0235e28a9 extending it to cached item packages. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r--src/map/itemdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c
index a863ed1ab..139a62e06 100644
--- a/src/map/itemdb.c
+++ b/src/map/itemdb.c
@@ -707,7 +707,7 @@ void itemdb_read_groups(void) {
config_destroy(&item_group_conf);
aFree(gsize);
- ShowStatus("Done reading '"CL_WHITE"%lu"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"' ("CL_GREEN"C"CL_RESET").\n", count, config_filename);
+ ShowStatus("Done reading '"CL_WHITE"%lu"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n", count, config_filename);
}
/* [Ind/Hercules] - HCache for Packages */
void itemdb_write_cached_packages(const char *config_filename) {
@@ -900,7 +900,7 @@ bool itemdb_read_cached_packages(const char *config_filename) {
fclose(file);
- ShowStatus("Done reading '"CL_WHITE"%lu"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n", pcount, config_filename);
+ ShowStatus("Done reading '"CL_WHITE"%lu"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"' ("CL_GREEN"C"CL_RESET").\n", pcount, config_filename);
return true;
}