From 3286a16fe958ce6aa85ddb07958aca9e2467efac Mon Sep 17 00:00:00 2001 From: skotlex Date: Mon, 2 Oct 2006 21:36:51 +0000 Subject: - Modified item-granded status resistance reduction to behave as explained by Vicious (Ragnarok Monthly magazine) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8921 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/status.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'src/map/status.c') diff --git a/src/map/status.c b/src/map/status.c index bdb44c7a4..b5dc06b07 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4479,13 +4479,15 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val return 0; } - //Item defenses do not reduce duration, so they go out of the function. - if(sd && SC_COMMON_MIN<=type && type<=SC_COMMON_MAX - && sd->reseff[type-SC_COMMON_MIN] > 0) - def += sd->reseff[type-SC_COMMON_MIN]; - - if (def && !(flag&8)) - rate -= rate*def/10000; + if (!(flag&8)) { + if (def) //Natural resistance + rate -= rate*def/10000; + + //Item resistance (only applies to rate%) + if(sd && SC_COMMON_MIN<=type && type<=SC_COMMON_MAX + && sd->reseff[type-SC_COMMON_MIN] > 0) + rate -= rate*sd->reseff[type-SC_COMMON_MIN]/10000; + } if (!(rand()%10000 < rate)) return 0; -- cgit v1.2.3-70-g09d2