Commit 62ee9cfb authored by salix5's avatar salix5

remove EFFECT_FLAG_COF

parent 928e17fe
......@@ -443,7 +443,8 @@ int32 effect::is_chainable(uint8 tp) {
if(!(type & EFFECT_TYPE_ACTIONS))
return FALSE;
int32 sp = get_speed();
if((type & EFFECT_TYPE_ACTIVATE) && (sp <= 1) && !(flag & EFFECT_FLAG_COF))
// Curse of Field(12470447) is the exception
if((type & EFFECT_TYPE_ACTIVATE) && (sp <= 1) && handler->data.code != 12470447)
return FALSE;
if(pduel->game_field->core.current_chain.size()) {
if(!(flag & EFFECT_FLAG_FIELD_ONLY) && (type & EFFECT_TYPE_TRIGGER_O)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment