Commit 8298cf63 authored by DailyShana's avatar DailyShana

fix

parent ccf0e090
...@@ -5205,7 +5205,7 @@ int32 field::adjust_step(uint16 step) { ...@@ -5205,7 +5205,7 @@ int32 field::adjust_step(uint16 step) {
for(uint8 p = 0; p < 2; ++p) { for(uint8 p = 0; p < 2; ++p) {
for(auto cit = player[tp].list_mzone.begin(); cit != player[tp].list_mzone.end(); ++cit) { for(auto cit = player[tp].list_mzone.begin(); cit != player[tp].list_mzone.end(); ++cit) {
card* pcard = *cit; card* pcard = *cit;
if(!pcard || pcard->is_affected_by_effect(EFFECT_CANNOT_CHANGE_POS_E)) if(!pcard || (pcard->data.type & TYPE_LINK) || pcard->is_affected_by_effect(EFFECT_CANNOT_CHANGE_POS_E))
continue; continue;
eset.clear(); eset.clear();
pcard->filter_effect(EFFECT_SET_POSITION, &eset); pcard->filter_effect(EFFECT_SET_POSITION, &eset);
......
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