파트1을 확인하고자하면 아래의 링크를 참고하시길 바란다. 디파일러 파트 (1) 파트1과 동일하게 영상을 시작으로 개선된 코드를 작성하겠다. 파트1에 작성되었던 코드 중 다크스웜은 문제가 아니었음을 파악하였다. 컨슘 파트가 문제였다. 컨슘파트도 메소드로 나누었다. private Unit nearestMyUnit(Unit unit, UnitType unitType) { double minDist = Double.MAX_VALUE; Unit nearestType = null; for (Unit findType : MyBotModule.Broodwar.self().getUnits()) { if (findType.getType() == unitType) { if (unit.getDistance(findType) ..