summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-05 13:33:02 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-05 13:33:02 +0000
commit4a7dd96086cc2ece33d876671db5b0cb8d82b1ac (patch)
tree836539f40d45b93a8d70c2e6218d527642c7c03c
parent7b349644d1a92d0585f8734e2a3da3cd08198462 (diff)
downloadhercules-4a7dd96086cc2ece33d876671db5b0cb8d82b1ac.tar.gz
hercules-4a7dd96086cc2ece33d876671db5b0cb8d82b1ac.tar.bz2
hercules-4a7dd96086cc2ece33d876671db5b0cb8d82b1ac.tar.xz
hercules-4a7dd96086cc2ece33d876671db5b0cb8d82b1ac.zip
Removed the silly and misleading 'firewall detected' message
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9786 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/char/char.c3
-rw-r--r--src/char_sql/char.c2
-rw-r--r--src/map/map.c2
4 files changed, 2 insertions, 7 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 35f76764a..9e3d2a1b6 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2007/02/05
+ * Removed the silly and misleading 'firewall detected' message
2007/02/03
* Added missing vc6 project file
* Corrected a lie in the script documentation [ultramage]
diff --git a/src/char/char.c b/src/char/char.c
index f14a320ba..e9d371ba5 100644
--- a/src/char/char.c
+++ b/src/char/char.c
@@ -4403,9 +4403,6 @@ int do_init(int argc, char **argv) {
strcpy(char_ip_str, buf);
char_ip = inet_addr(char_ip_str);
}
-
- if (ptr[0] == 192 && ptr[1] == 168)
- ShowWarning("Firewall detected.. edit subnet_athena.conf and char_athena.conf\n");
}
for(i = 0; i < MAX_MAP_SERVERS; i++) {
diff --git a/src/char_sql/char.c b/src/char_sql/char.c
index 52a986394..00807a70a 100644
--- a/src/char_sql/char.c
+++ b/src/char_sql/char.c
@@ -4295,8 +4295,6 @@ int do_init(int argc, char **argv){
strcpy(char_ip_str, buf);
char_ip = inet_addr(char_ip_str);
}
- if (ptr[0] == 192 && ptr[1] == 168)
- ShowWarning("Firewall detected.. edit subnet_athena.conf and char_athena.conf\n");
}
ShowInfo("open port %d.....\n",char_port);
diff --git a/src/map/map.c b/src/map/map.c
index 63496534c..3817700fb 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -3906,8 +3906,6 @@ int do_init(int argc, char *argv[]) {
clif_setip(buf);
if (!char_ip_set)
chrif_setip(buf);
- if (ptr[0] == 192 && ptr[1] == 168)
- ShowNotice("\nFirewall detected.. \n edit subnet_athena.conf and map_athena.conf\n\n");
}
if (SHOW_DEBUG_MSG)