Enchanted Evening Help

Hello,
I just coded Enchanted Evening. It works just fine, but moves all the lands into the Enchantment/Artifact zone on the board cluttering things up something fierce. Is there any way to make it so that the lands stay where the lands normally are?
Here is the code I have for EE.
I just coded Enchanted Evening. It works just fine, but moves all the lands into the Enchantment/Artifact zone on the board cluttering things up something fierce. Is there any way to make it so that the lands stay where the lands normally are?
Here is the code I have for EE.
- Code: Select all
<STATIC_ABILITY>
<FILTER filter_id="0">
local filter = ClearFilter()
filter:Add( FE_IS_PERMANENT )
</FILTER>
<CONTINUOUS_ACTION layer="4" filter_id="0">
if FilteredCard() ~= nil then
local cardtype = FilteredCard():GetCurrentCharacteristics():CardType_GetWritable()
cardtype:Add( CARD_TYPE_ENCHANTMENT )
end
</CONTINUOUS_ACTION>
</STATIC_ABILITY>
<AI_BASE_SCORE score="1200" zone="ZONE_BATTLEFIELD" />