diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/status.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index bc98533a3..331d075a8 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/22
+ * Angelus was giving more bonus than it should. Fixed. [Zido]
* Added Option constants for Carts, fixed OPTION_FLYING (it conflicts with
OPTION_XMAS?) [Skotlex]
* Updated clif.c to check for OPTION_WEDDING|OPTION_XMAS instead of view
diff --git a/src/map/status.c b/src/map/status.c index bdb12deb9..0e4e3d956 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2073,7 +2073,7 @@ int status_calc_def2(struct block_list *bl, int def2) if(sc->data[SC_SUN_COMFORT].timer!=-1)
def2 += (status_get_lv(bl) + status_get_dex(bl) + status_get_luk(bl))/2;
if(sc->data[SC_ANGELUS].timer!=-1)
- def2 += def2 * (10+5*sc->data[SC_ANGELUS].val1)/100;
+ def2 += def2 * (5*sc->data[SC_ANGELUS].val1)/100;
if(sc->data[SC_CONCENTRATION].timer!=-1)
def2 -= def2 * 5*sc->data[SC_CONCENTRATION].val1/100;
if(sc->data[SC_POISON].timer!=-1)
|