Przeglądaj źródła

Eleanor Tinder combo

Fix Eleanor Tinder-CBC-EQC being broken since hash:a506c7f due to a
little requirement check typo.
lighta 11 lat temu
rodzic
commit
90ced830a4
1 zmienionych plików z 2 dodań i 2 usunięć
  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;
 	}