- Fixed code using i instead of id in a few instances when updating char/map server IP.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7510 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2006-07-04 13:48:13 +00:00
parent ac24e4a389
commit 798eea8c5e
2 changed files with 2 additions and 2 deletions

View File

@@ -2989,7 +2989,7 @@ int parse_frommap(int fd) {
case 0x2736:
if (RFIFOREST(fd) < 6) return 0;
ShowInfo("Updated IP address of Server #%d to %d.%d.%d.%d.\n",i,
ShowInfo("Updated IP address of Server #%d to %d.%d.%d.%d.\n",id,
(int)RFIFOB(fd,2),(int)RFIFOB(fd,3),
(int)RFIFOB(fd,4),(int)RFIFOB(fd,5));
server[id].ip = RFIFOL(fd, 2);