diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-05 15:05:49 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-05 15:05:49 +0000 |
commit | f7cf35aaad2512e7f329954946aac5e2a24cdfb7 (patch) | |
tree | 93dff649c7a49c0f6758a18adb23105968dd9df2 /src/map/status.c | |
parent | c05a7a22feec3a93445654f0ce1eead31052e6b9 (diff) | |
download | hercules-f7cf35aaad2512e7f329954946aac5e2a24cdfb7.tar.gz hercules-f7cf35aaad2512e7f329954946aac5e2a24cdfb7.tar.bz2 hercules-f7cf35aaad2512e7f329954946aac5e2a24cdfb7.tar.xz hercules-f7cf35aaad2512e7f329954946aac5e2a24cdfb7.zip |
- Corrected cloaking not ending on attack if you are near a wall.
- Moved define cap_value to map.h as it's quite handy.
- Updated pc_bonus to use cap_value on all status_data modifiers to prevent overflows/underflows.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6979 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map/status.c b/src/map/status.c index 4552d9d9f..172de6f00 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -52,9 +52,6 @@ int current_equip_card_id; //To prevent card-stacking (from jA) [Skotlex] //we need it for new cards 15 Feb 2005, to check if the combo cards are insrerted into the CURRENT weapon only //to avoid cards exploits -//Caps values to min/max -#define cap_value(a, min, max) (a>max?max:a<min?min:a) - //Initializes the StatusIconChangeTable variable. May seem somewhat slower than directly defining the array, //but it is much less prone to errors. [Skotlex] void initChangeTables(void) { @@ -4815,6 +4812,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val break; case SC_GRAVITATION: + //val2 = aspd reduction if (val3 == BCT_SELF) { struct unit_data *ud = unit_bl2ud(bl); if (ud) { |