Changeset 212 for trunk

Show
Ignore:
Timestamp:
11/19/08 13:46:56 (17 years ago)
Author:
yumileroy
Message:

[svn] Added player latency reading to Characters DB. Patch by Biglad.

*** Latency readouts provided by Trollz Inc. For all your cheap yet effective statistics please come to Trollz Inc... Now with more murloc blood added for more accuracy.

Original author: KingPin?
Date: 2008-11-11 14:01:02-06:00

Location:
trunk
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/Player.cpp

    r209 r212  
    1509815098        "totaltime, leveltime, rest_bonus, logout_time, is_logout_resting, resettalents_cost, resettalents_time, " 
    1509915099        "trans_x, trans_y, trans_z, trans_o, transguid, extra_flags, stable_slots, at_login, zone, " 
    15100         "death_expire_time, taxi_path) VALUES (" 
     15100        "death_expire_time, taxi_path, latency) VALUES (" 
    1510115101        << GetGUIDLow() << ", " 
    1510215102        << GetSession()->GetAccountId() << ", '" 
     
    1519715197    ss << ", '"; 
    1519815198    ss << m_taxi.SaveTaxiDestinationsToString(); 
     15199        ss << "', '"; 
     15200        ss << GetSession()->GetLatency(); 
    1519915201    ss << "' )"; 
    1520015202