소스 검색

Merge pull request #181 from L2J/fix/suicide-skills

Fix suicide skills
Zoey76 9 년 전
부모
커밋
adc701245b
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 5
      dist/game/data/scripts/handlers/effecthandlers/MagicalAttack.java

+ 0 - 5
dist/game/data/scripts/handlers/effecthandlers/MagicalAttack.java

@@ -97,10 +97,5 @@ public final class MagicalAttack extends AbstractEffect
 				activeChar.sendDamageMessage(target, damage, mcrit, false, false);
 			}
 		}
-		
-		if (info.getSkill().isSuicideAttack())
-		{
-			activeChar.doDie(activeChar);
-		}
 	}
 }