diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-29 12:48:08 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-29 12:48:08 +0000 |
commit | 2d7d5b8c0f59c6641e4b452492438b3fc9c982fc (patch) | |
tree | b3d6298dc2cd28189859ced3cc844ed9f0a91858 /src/map/pc.c | |
parent | 6c5c324946c1e289de9521bff718f26e47b47362 (diff) | |
download | hercules-2d7d5b8c0f59c6641e4b452492438b3fc9c982fc.tar.gz hercules-2d7d5b8c0f59c6641e4b452492438b3fc9c982fc.tar.bz2 hercules-2d7d5b8c0f59c6641e4b452492438b3fc9c982fc.tar.xz hercules-2d7d5b8c0f59c6641e4b452492438b3fc9c982fc.zip |
- Support for SP Regen status just like HP Regen (by items, by a little time). Required in some new items from Ep 12.1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12743 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 289fc57b7..9c6f9686e 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -6645,7 +6645,7 @@ int pc_checkitem(struct map_session_data *sd) if(!sd->status.inventory[i].equip) continue; - if (sd->status.inventory[i].equip&~pc_equippoint(sd,i)) { + if(sd->status.inventory[i].equip&~pc_equippoint(sd,i)) { sd->status.inventory[i].equip=0; calc_flag = 1; continue; |