summaryrefslogtreecommitdiff
path: root/src/common/core.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-05 19:19:40 -0300
committershennetsind <ind@henn.et>2013-07-05 19:19:40 -0300
commit0118a097c9626b3f8342dd29897392f3da4c1187 (patch)
tree3839e506a5ad38719e3772da0d03cf12240e3c4c /src/common/core.c
parenta3711050a219e887b6637969bac66fb7d261d9cf (diff)
downloadhercules-0118a097c9626b3f8342dd29897392f3da4c1187.tar.gz
hercules-0118a097c9626b3f8342dd29897392f3da4c1187.tar.bz2
hercules-0118a097c9626b3f8342dd29897392f3da4c1187.tar.xz
hercules-0118a097c9626b3f8342dd29897392f3da4c1187.zip
HCache | Item Packages Update
http://hercules.ws/board/topic/1389-hcache-item-packages-update/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/core.c')
-rw-r--r--src/common/core.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/core.c b/src/common/core.c
index c53d2243b..d2f662551 100644
--- a/src/common/core.c
+++ b/src/common/core.c
@@ -18,6 +18,7 @@
#include "../common/sql.h"
#include "../config/core.h"
#include "../common/HPM.h"
+ #include "../common/utils.h"
#endif
#include <stdio.h>
@@ -281,6 +282,7 @@ void usercheck(void) {
void core_defaults(void) {
#ifndef MINICORE
hpm_defaults();
+ HCache_defaults();
#endif
console_defaults();
strlib_defaults();
@@ -332,7 +334,9 @@ int main (int argc, char **argv) {
iTimer->init();
console->init();
-
+
+ HCache->init();
+
#ifndef MINICORE
HPM->init();
#endif