Commit a29f72cd authored by DailyShana's avatar DailyShana

fix

parent 73c1364c
...@@ -1729,9 +1729,9 @@ int32 scriptlib::card_enable_counter_permit(lua_State *L) { ...@@ -1729,9 +1729,9 @@ int32 scriptlib::card_enable_counter_permit(lua_State *L) {
peffect->code = EFFECT_COUNTER_PERMIT | countertype; peffect->code = EFFECT_COUNTER_PERMIT | countertype;
peffect->flag = EFFECT_FLAG_SINGLE_RANGE; peffect->flag = EFFECT_FLAG_SINGLE_RANGE;
if(pcard->data.type & TYPE_MONSTER) if(pcard->data.type & TYPE_MONSTER)
peffect->range = LOCATION_MZONE; peffect->range = LOCATION_MZONE | LOCATION_PZONE;
else else
peffect->range = LOCATION_SZONE | LOCATION_FZONE | LOCATION_PZONE; peffect->range = LOCATION_SZONE | LOCATION_FZONE;
pcard->add_effect(peffect); pcard->add_effect(peffect);
return 0; return 0;
} }
......
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