diff options
author | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 14:21:02 +0000 |
---|---|---|
committer | blacksirius <blacksirius@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 14:21:02 +0000 |
commit | 18ac48230ab17ee05ed4b717d858a20879f851f9 (patch) | |
tree | b30e993c0a14a09fe70586570a97ed7d2a90a21c /src/common/core.c | |
parent | 673164238ca72b5d90c6ad0df00f509d339a0621 (diff) | |
download | hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.gz hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.bz2 hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.tar.xz hercules-18ac48230ab17ee05ed4b717d858a20879f851f9.zip |
removed the old obsolete Plugin system (commit 1/2)
- Removed @ Autoconf/make and CMake, VC Projects will be cleaned in a additional commit.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16203 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/core.c')
-rw-r--r-- | src/common/core.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/core.c b/src/common/core.c index 37e5fc562..bde1d9c0b 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -9,7 +9,6 @@ #include "../common/db.h" #include "../common/socket.h" #include "../common/timer.h" -#include "../common/plugins.h" #endif #include <stdio.h> @@ -288,10 +287,8 @@ int main (int argc, char **argv) timer_init(); socket_init(); - plugins_init(); do_init(argc,argv); - plugin_event_trigger(EVENT_ATHENA_INIT); {// Main runtime cycle int next; @@ -301,11 +298,9 @@ int main (int argc, char **argv) } } - plugin_event_trigger(EVENT_ATHENA_FINAL); do_final(); timer_final(); - plugins_final(); socket_final(); db_final(); #endif |