diff options
author | shennetsind <ind@henn.et> | 2013-04-07 01:55:40 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-07 01:55:40 -0300 |
commit | 2f9f7ce4aa46514c9173a3c91f4033b25901520e (patch) | |
tree | ec5656a546bcaf6d7820c3de252b63070d32b887 /src/map/pc.c | |
parent | 10b53b9fbc011a9224d118414517870af3e9e20c (diff) | |
download | hercules-2f9f7ce4aa46514c9173a3c91f4033b25901520e.tar.gz hercules-2f9f7ce4aa46514c9173a3c91f4033b25901520e.tar.bz2 hercules-2f9f7ce4aa46514c9173a3c91f4033b25901520e.tar.xz hercules-2f9f7ce4aa46514c9173a3c91f4033b25901520e.zip |
PacketDB Overhaul
Feature Design by GreenBox
Special Thanks to mkbu95 for bringing this topic up! (packet db)
http://hercules.ws/board/topic/353-packetdb-overhaul/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 104e5829f..796280308 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1050,10 +1050,10 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim //display login notice ShowInfo("'"CL_WHITE"%s"CL_RESET"' logged in." " (AID/CID: '"CL_WHITE"%d/%d"CL_RESET"'," - " Packet Ver: '"CL_WHITE"%d"CL_RESET"', IP: '"CL_WHITE"%d.%d.%d.%d"CL_RESET"'," + " IP: '"CL_WHITE"%d.%d.%d.%d"CL_RESET"'," " Group '"CL_WHITE"%d"CL_RESET"').\n", sd->status.name, sd->status.account_id, sd->status.char_id, - sd->packet_ver, CONVIP(ip), sd->group_id); + CONVIP(ip), sd->group_id); // Send friends list clif->friendslist_send(sd); |