diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-29 11:28:13 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-29 11:28:13 +0000 |
commit | 49a385c135d3012abb08e1ddc6a301c89f0e3a54 (patch) | |
tree | 62744fb0092b41bdf6e864de85b9ab5548c0f849 /src/map/pc.c | |
parent | c369d1fab6d576c203bbfea30cc619490fe865ce (diff) | |
download | hercules-49a385c135d3012abb08e1ddc6a301c89f0e3a54.tar.gz hercules-49a385c135d3012abb08e1ddc6a301c89f0e3a54.tar.bz2 hercules-49a385c135d3012abb08e1ddc6a301c89f0e3a54.tar.xz hercules-49a385c135d3012abb08e1ddc6a301c89f0e3a54.zip |
* Insignificant code tweaks: removal of excess function declarations and self assignments.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14520 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 902463cb0..deb266e78 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -5227,8 +5227,8 @@ int pc_resetlvl(struct map_session_data* sd,int type) sd->status.skill_point=0; sd->status.base_level=1; sd->status.job_level=1; - sd->status.base_exp=sd->status.base_exp=0; - sd->status.job_exp=sd->status.job_exp=0; + sd->status.base_exp=0; + sd->status.job_exp=0; if(sd->sc.option !=0) sd->sc.option = 0; |