diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-17 16:23:57 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-17 16:23:57 +0000 |
commit | 0c1c429e338a07638c07c4bc088311abda354c36 (patch) | |
tree | 0ce491add7f3e632b6d4f3b6f5c01ac351a8f6d2 /src/map/pc.c | |
parent | e30cc8e4ebab164b261578ef7bb8a76978db5478 (diff) | |
download | hercules-0c1c429e338a07638c07c4bc088311abda354c36.tar.gz hercules-0c1c429e338a07638c07c4bc088311abda354c36.tar.bz2 hercules-0c1c429e338a07638c07c4bc088311abda354c36.tar.xz hercules-0c1c429e338a07638c07c4bc088311abda354c36.zip |
- Devotion absorbed damage will now appear to come from oneself (instead of the original attacker changing directions towards the Crusader)
- Updated clif_refres to send inventory, cart, and weight info.
- Fixed intif_guild_memberinfoshort to not leave a dangling pointer when someone logs out <.<
- Cleaned up a bit guild_check_member
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7226 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 5a57d69e2..18d255da7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7236,7 +7236,7 @@ int pc_readdb(void) max_level[job][type]--;
if (max_level[job][type] < max) {
ShowWarning("pc_readdb: Specified max %d for job %d, but that job's exp table only goes up to level %d.\n", max, job, max_level[job][type]);
- ShowNotice("(You may still reach lv %d through scripts/gm-commands)\n");
+ ShowNotice("(You may still reach lv %d through scripts/gm-commands)\n", max);
max_level[job][type] = max;
}
// ShowDebug("%s - Class %d: %d\n", type?"Job":"Base", job, max_level[job][type]);
|