Просмотр исходного кода

Eleanor Tinder combo

Fix Eleanor Tinder-CBC-EQC being broken since hash:a506c7f due to a
little requirement check typo.
lighta 11 лет назад
Родитель
Сommit
90ced830a4
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/map/skill.c

+ 2 - 2
src/map/skill.c

@@ -696,11 +696,11 @@ bool skill_isNotOk_hom(uint16 skill_id, struct homun_data *hd)
 			break;
 		case MH_CBC:
 			if(!(hd->sc.data[SC_COMBO] && hd->sc.data[SC_COMBO]->val1 == MH_TINDER_BREAKER)
-				|| !hd->homunculus.spiritball < 2) return true;
+				|| hd->homunculus.spiritball < 2) return true;
 			break;
 		case MH_EQC:
 			if(!(hd->sc.data[SC_COMBO] && hd->sc.data[SC_COMBO]->val1 == MH_CBC)
-				|| !hd->homunculus.spiritball < 3) return true;
+				|| hd->homunculus.spiritball < 3) return true;
 			break;
 	}