diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-16 14:05:24 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-16 14:05:24 +0000 |
commit | 143e5d0790f5b8eb7e79b275ac37188b5bac7362 (patch) | |
tree | a86ea7bffa81011c521cf195882c478cce9b6940 /src/map/atcommand.c | |
parent | 24d0d0a5216219169b8da6c1601b4867bcbe9ca6 (diff) | |
download | hercules-143e5d0790f5b8eb7e79b275ac37188b5bac7362.tar.gz hercules-143e5d0790f5b8eb7e79b275ac37188b5bac7362.tar.bz2 hercules-143e5d0790f5b8eb7e79b275ac37188b5bac7362.tar.xz hercules-143e5d0790f5b8eb7e79b275ac37188b5bac7362.zip |
- When reinvoking a combo-time, the previous combo time will be terminated.
- Fixed Esma-state not ending after casting it.
- Fixed @hominfo displaying intimacy on a 1/10k scale.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8997 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 4cb4280a0..71b7fca74 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -10064,7 +10064,7 @@ int atcommand_hominfo( snprintf(atcmd_output, sizeof(atcmd_output) ,"ATK : %d - MATK : %d~%d", sd->hd->battle_status.rhw.atk2+sd->hd->battle_status.batk, sd->hd->battle_status.matk_min, sd->hd->battle_status.matk_max);
clif_displaymessage(fd, atcmd_output);
- snprintf(atcmd_output, sizeof(atcmd_output) ,"Hungry : %d - Intimacy : %u", sd->homunculus.hunger, sd->homunculus.intimacy);
+ snprintf(atcmd_output, sizeof(atcmd_output) ,"Hungry : %d - Intimacy : %u", sd->homunculus.hunger, sd->homunculus.intimacy/100);
clif_displaymessage(fd, atcmd_output);
return 0;
|