Skip to content

Commit 2de63b2

Browse files
authored
"Lord British Space Fighter" fix
Undeclared param causing a script error.
1 parent a8d5254 commit 2de63b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

official/c35514096.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function s.initial_effect(c)
88
e1:SetDescription(aux.Stringid(id,0))
99
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
1010
e1:SetCode(EVENT_BATTLE_DESTROYING)
11-
e1:SetCondition(function() return e:GetHandler():IsRelateToBattle() end)
11+
e1:SetCondition(function(e) return e:GetHandler():IsRelateToBattle() end)
1212
e1:SetTarget(s.efftg)
1313
e1:SetOperation(s.effop)
1414
c:RegisterEffect(e1)
@@ -64,4 +64,4 @@ function s.effop(e,tp,eg,ep,ev,re,r,rp)
6464
Duel.SpecialSummon(token,0,tp,tp,false,false,POS_FACEUP)
6565
end
6666
end
67-
end
67+
end

0 commit comments

Comments
 (0)