summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorcelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-07 15:41:38 +0000
committercelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-07 15:41:38 +0000
commitec11a6a46dcb98508758d0fb96d18194f28450c5 (patch)
treef7d2d8aef6bc3ab7db6cafd610dcd6a3f8053110 /src/map/map.c
parent24ec5cc01a034fe378bc0e8dfb7426a2dbbf8563 (diff)
downloadhercules-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.c5
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;
}