diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-07 15:41:38 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-07 15:41:38 +0000 |
commit | ec11a6a46dcb98508758d0fb96d18194f28450c5 (patch) | |
tree | f7d2d8aef6bc3ab7db6cafd610dcd6a3f8053110 /src/map/map.c | |
parent | 24ec5cc01a034fe378bc0e8dfb7426a2dbbf8563 (diff) | |
download | hercules-ec11a6a46dcb98508758d0fb96d18194f28450c5.tar.gz hercules-ec11a6a46dcb98508758d0fb96d18194f28450c5.tar.bz2 hercules-ec11a6a46dcb98508758d0fb96d18194f28450c5.tar.xz hercules-ec11a6a46dcb98508758d0fb96d18194f28450c5.zip |
* Added uptime logging support whenever the server closes
* Fixed 'make clean' not removing the .o files in /common
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1207 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/map.c b/src/map/map.c index bcf6c83ad..f241c5fec 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -50,8 +50,6 @@ // maybe put basic macros to somewhere else #define swap(a,b) ((a == b) || ((a ^= b), (b ^= a), (a ^= b))) -unsigned long ticks = 0; // by MC Cameri - #ifndef TXT_ONLY #include "mail.h" // mail system [Valaris] @@ -167,6 +165,7 @@ char help_txt[256] = "conf/help.txt"; char wisp_server_name[24] = "Server"; // can be modified in char-server configuration file int console = 0; + /*========================================== * 全map鯖?計での接??設定 * (char鯖から送られてくる) @@ -3422,8 +3421,6 @@ int do_init(int argc, char *argv[]) { sprintf(tmp_output,"Server is '"CL_GREEN"ready"CL_RESET"' and listening on port '"CL_WHITE"%d"CL_RESET"'.\n\n", map_port); ShowStatus(tmp_output); - ticks = gettick(); - return 0; } |