Skip to content

Commit b7dfc24

Browse files
authored
Fixed small typo
1 parent 2cdfe23 commit b7dfc24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

official/c57722593.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function s.initial_effect(c)
88
Spirit.AddProcedure(c,EVENT_SPSUMMON_SUCCESS)
99
--Must be Special Summoned (from your hand) by controlling a Spirit monster
1010
local e0=Effect.CreateEffect(c)
11-
e1:SetDescription(aux.Stringid(id,0))
11+
e0:SetDescription(aux.Stringid(id,0))
1212
e0:SetType(EFFECT_TYPE_FIELD)
1313
e0:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
1414
e0:SetCode(EFFECT_SPSUMMON_PROC)
@@ -18,7 +18,7 @@ function s.initial_effect(c)
1818
c:RegisterEffect(e0)
1919
--Targeted Spirit's effects cannot be activated
2020
local e1=Effect.CreateEffect(c)
21-
e1:SetDescription(aux.Stringid(id,0))
21+
e1:SetDescription(aux.Stringid(id,1))
2222
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
2323
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
2424
e1:SetCode(EVENT_PHASE+PHASE_END)
@@ -58,4 +58,4 @@ function s.actlimop(e,tp,eg,ep,ev,re,r,rp)
5858
e1:SetReset(RESETS_STANDARD_PHASE_END)
5959
tc:RegisterEffect(e1)
6060
end
61-
end
61+
end

0 commit comments

Comments
 (0)