Added Sirius_White's fix for sense working on emperium. (bugreport: 1679)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12860 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
sketchyphoenix 2008-06-19 07:35:03 +00:00
parent 290ca7eec3
commit 7340e02d5b
2 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2008/06/19
* Added Sirius_White's fix for sense working on emperium. (bugreport: 1679) [SketchyPhoenix]
2008/06/18 2008/06/18
* Added a fix for refresh properly displaying dead and sitting players. [SketchyPhoenix] * Added a fix for refresh properly displaying dead and sitting players. [SketchyPhoenix]
* Fixed basilica behavior not knocking back monsters 2 cells should one attempt to enter the field. * Fixed basilica behavior not knocking back monsters 2 cells should one attempt to enter the field.

View File

@ -3942,6 +3942,9 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in
clif_skill_fail(sd,skillid,0,0); clif_skill_fail(sd,skillid,0,0);
break; break;
} }
if (dstmd && dstmd->class_ == MOBID_EMPERIUM) {
break;
}
clif_skill_nodamage(src,bl,skillid,skilllv,1); clif_skill_nodamage(src,bl,skillid,skilllv,1);
clif_skill_estimation((struct map_session_data *)src,bl); clif_skill_estimation((struct map_session_data *)src,bl);
} }