Show HH/CT damage + Miniroom patch + Removed redundant skillbook drops
Added a server flag to allow solo expeditions. Added a server flag that allows short-lengthened cooldown on Hero's Will skill. Added recipes for Advanced Mob Crystal 2 and 3 (level 120 and 130) within Etc Maker. Fixed Heaven's Hammer and Combo Tempest not displaying damage dealt value. Fixed some minor PE exploits with players being allowed to create minirooms while dead or inside an event. Adjusted item dropped from mobs to now allow visible quest items appear before not-visible ones, thus showing no "empty spaces" when the mob has multiple quest drops. Fixed Horntail not attributing quest progress for "The Last Hour of Horntail" quest. Attribution only happens inside the expedition. Removed unnecessary skill books from the drop data, since quests for them were recently implemented.
This commit is contained in:
@@ -1444,27 +1444,32 @@ public class MapleStatEffect {
|
||||
|
||||
private boolean isCureAllAbnormalStatus() {
|
||||
if (skill) {
|
||||
switch (sourceid) {
|
||||
case Hero.HEROS_WILL:
|
||||
case Paladin.HEROS_WILL:
|
||||
case DarkKnight.HEROS_WILL:
|
||||
case FPArchMage.HEROS_WILL:
|
||||
case ILArchMage.HEROS_WILL:
|
||||
case Bishop.HEROS_WILL:
|
||||
case Bowmaster.HEROS_WILL:
|
||||
case Marksman.HEROS_WILL:
|
||||
case NightLord.HEROS_WILL:
|
||||
case Shadower.HEROS_WILL:
|
||||
case Buccaneer.PIRATES_RAGE:
|
||||
case Aran.HEROS_WILL:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
return isHerosWill(sourceid);
|
||||
} else if (sourceid == 2022544) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public static boolean isHerosWill(int skillid) {
|
||||
switch(skillid) {
|
||||
case Hero.HEROS_WILL:
|
||||
case Paladin.HEROS_WILL:
|
||||
case DarkKnight.HEROS_WILL:
|
||||
case FPArchMage.HEROS_WILL:
|
||||
case ILArchMage.HEROS_WILL:
|
||||
case Bishop.HEROS_WILL:
|
||||
case Bowmaster.HEROS_WILL:
|
||||
case Marksman.HEROS_WILL:
|
||||
case NightLord.HEROS_WILL:
|
||||
case Shadower.HEROS_WILL:
|
||||
case Buccaneer.PIRATES_RAGE:
|
||||
case Aran.HEROS_WILL:
|
||||
return true;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private boolean isDash() {
|
||||
return skill && (sourceid == Pirate.DASH || sourceid == ThunderBreaker.DASH || sourceid == Beginner.SPACE_DASH || sourceid == Noblesse.SPACE_DASH);
|
||||
|
||||
Reference in New Issue
Block a user