diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-29 14:18:20 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-29 14:18:20 +0000 |
commit | f648da19a914152a6d772f377dda110fa9248972 (patch) | |
tree | 96269103f190eb9c9ed656ad507104258c864b87 /src/map/pc.c | |
parent | 042e3e0119641774c456d1c14e70f33d0609a491 (diff) | |
download | hercules-f648da19a914152a6d772f377dda110fa9248972.tar.gz hercules-f648da19a914152a6d772f377dda110fa9248972.tar.bz2 hercules-f648da19a914152a6d772f377dda110fa9248972.tar.xz hercules-f648da19a914152a6d772f377dda110fa9248972.zip |
- Some cleaning on the homunc speed calculating code, so that it correctly uses the default walk speed if the player has no speed yet.
- Some speed up code when loading status changes (use a pointer instead of memcpy'ing all the time)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9359 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 80ce76857..51fb2e23a 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -666,7 +666,7 @@ int pc_authok(struct map_session_data *sd, int login_id2, time_t connect_until_t intif_request_petdata(sd->status.account_id, sd->status.char_id, sd->status.pet_id); // Homunculus [albator] - if (sd->status.hom_id > 0) + if (sd->status.hom_id > 0) intif_homunculus_requestload(sd->status.account_id, sd->status.hom_id); if (sd->status.party_id > 0 && party_search(sd->status.party_id) == NULL) |