浏览代码

Eleanor Tinder combo

Fix Eleanor Tinder-CBC-EQC being broken since hash:a506c7f due to a
little requirement check typo.
lighta 11 年之前
父节点
当前提交
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;
 	}