From 2a4ae472ec1380b0239edb684039e2f702156b8d Mon Sep 17 00:00:00 2001 From: arqalite Date: Sun, 22 Feb 2026 21:53:44 +0200 Subject: [PATCH] fix: prevent Sacred Fire King Garunix from summoning itself if location changes --- official/c66431519.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/official/c66431519.lua b/official/c66431519.lua index c71d97cfb6..2061e8b5b1 100644 --- a/official/c66431519.lua +++ b/official/c66431519.lua @@ -37,7 +37,7 @@ function s.spconfilter(c,tp) and not c:IsPreviousLocation(LOCATION_SZONE) end function s.spcon(e,tp,eg,ep,ev,re,r,rp) - return eg:IsExists(s.spconfilter,1,nil,tp) + return not eg:IsContains(e:GetHandler()) and eg:IsExists(s.spconfilter,1,nil,tp) end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() @@ -71,4 +71,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp) c:UpdateAttack(atk,RESETS_STANDARD_DISABLE_PHASE_END) end end -end \ No newline at end of file +end