diff options
author | Fate <fate-tmw@googlemail.com> | 2009-10-10 19:28:42 +0000 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-10-10 19:28:42 +0000 |
commit | a11a55e91bd25f52eac46a99f4c906e773245046 (patch) | |
tree | ab6aabc1e87104cc27010f47b29bd145e13920b2 | |
parent | 78f36299f3d878c935f8388ec23934239d0cdaa6 (diff) | |
download | tmwa-a11a55e91bd25f52eac46a99f4c906e773245046.tar.gz tmwa-a11a55e91bd25f52eac46a99f4c906e773245046.tar.bz2 tmwa-a11a55e91bd25f52eac46a99f4c906e773245046.tar.xz tmwa-a11a55e91bd25f52eac46a99f4c906e773245046.zip |
report job level as zero
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 7f603a9..7b4720c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2120,8 +2120,7 @@ int clif_updatestatus(struct map_session_data *sd,int type) WFIFOL(fd,4)=sd->status.base_level; break; case SP_JOBLEVEL: - return 1; // [Fate] Don't report this anymore - //WFIFOL(fd,4)=sd->status.job_level; + WFIFOL(fd,4)=0; break; case SP_MANNER: WFIFOL(fd,4)=sd->status.manner; |