summaryrefslogtreecommitdiff
path: root/src/char
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-01 04:24:45 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-01 04:24:45 +0000
commit34e32336184d870eb3682fb9ef539f5d69bcb65f (patch)
treea401823fbb8c5f9db65aedea9bf72a0eaae72902 /src/char
parent0ed285a115bfd1bd844b04e3190398c2e1a9ab68 (diff)
downloadhercules-34e32336184d870eb3682fb9ef539f5d69bcb65f.tar.gz
hercules-34e32336184d870eb3682fb9ef539f5d69bcb65f.tar.bz2
hercules-34e32336184d870eb3682fb9ef539f5d69bcb65f.tar.xz
hercules-34e32336184d870eb3682fb9ef539f5d69bcb65f.zip
- Fixed the subnet 0 mask being reset to 0 when someone goes up on the fame rankings.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8021 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char')
-rw-r--r--src/char/char.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/char/char.c b/src/char/char.c
index e6becbd5d..7f7421d42 100644
--- a/src/char/char.c
+++ b/src/char/char.c
@@ -3023,8 +3023,7 @@ int parse_frommap(int fd) {
if (RFIFOREST(fd) < 12)
return 0;
{
- int j;
- int id = RFIFOL(fd, 2);
+ int cid = RFIFOL(fd, 2);
int fame = RFIFOL(fd, 6);
char type = RFIFOB(fd, 10);
char pos = RFIFOB(fd, 11);
@@ -3064,14 +3063,14 @@ int parse_frommap(int fd) {
}
// If the player's already in the list, remove the entry and shift the following ones 1 step up
memmove(list+pos, list+pos+1, (size-pos-1) * sizeof(struct fame_list));
- list[size].fame = 0; // At worst, the guy'll end up last (shouldn't happen if fame only goes up)
+ list[size-1].fame = 0; // At worst, the guy'll end up last (shouldn't happen if fame only goes up)
}
// Find the position where the player has to be inserted
for(i = 0; i < size && fame < list[i].fame; i++);
// When found someone with less or as much fame, insert just above
if(i >= size) break;//Out of ranking.
memmove(list+i+1, list+i, (size-i-1) * sizeof(struct fame_list));
- list[i].id = id;
+ list[i].id = cid;
list[i].fame = fame;
// Look for the player's name
for(j = 0; j < char_num && char_dat[j].status.char_id != id; j++);