From 3533fa210ea7c1dfa4c771556772a086959a6078 Mon Sep 17 00:00:00 2001 From: Vury Leo Date: Sun, 8 Feb 2026 21:52:44 +0900 Subject: [PATCH] =?UTF-8?q?fix=20=E3=83=95=E3=82=A1=E3=82=A4=E3=82=A2?= =?UTF-8?q?=E3=82=A6=E3=82=A9=E3=83=BC=E3=83=AB=E3=83=BB=E3=83=89=E3=83=A9?= =?UTF-8?q?=E3=82=B4=E3=83=B3=E3=83=BB=E3=83=80=E3=83=BC=E3=82=AF=E3=83=95?= =?UTF-8?q?=E3=83=AB=E3=83=BC=E3=83=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- c68934651.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/c68934651.lua b/c68934651.lua index 577fc6b12e..4257a958d1 100644 --- a/c68934651.lua +++ b/c68934651.lua @@ -93,6 +93,18 @@ function c68934651.disop(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() Duel.NegateActivation(ev) if e:GetLabel()==1 and c:IsRelateToEffect(e) and c:IsChainAttackable(0) then + --Needed for the end of the Damage Step Duel.ChainAttack() + --Make another attack in a row + local e1=Effect.CreateEffect(c) + e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) + e1:SetCode(EVENT_DAMAGE_STEP_END) + e1:SetRange(LOCATION_MZONE) + e1:SetOperation(c68934651.chainop) + e1:SetReset(RESET_PHASE|PHASE_DAMAGE) + c:RegisterEffect(e1) end end +function c68934651.chainop() + Duel.ChainAttack() +end