Skip to content

Commit 2df9e5b

Browse files
authored
Fix "Luce the Dusk's Dark"
It was not preventing the destruction of face-down monsters
1 parent 0ab42ea commit 2df9e5b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

official/c45409943.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ function s.initial_effect(c)
1010
local e1=Effect.CreateEffect(c)
1111
e1:SetType(EFFECT_TYPE_FIELD)
1212
e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT)
13+
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
1314
e1:SetRange(LOCATION_MZONE)
1415
e1:SetTargetRange(LOCATION_MZONE,0)
1516
e1:SetTarget(function(e,c) return c:IsSequence(0,4) or (Duel.IsDuelType(DUEL_3_COLUMNS_FIELD) and c:IsSequence(1,3)) end)
@@ -83,4 +84,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
8384
if tc:IsRelateToEffect(e) then
8485
Duel.Destroy(tc,REASON_EFFECT)
8586
end
86-
end
87+
end

0 commit comments

Comments
 (0)