We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9556d87 commit 76253e3Copy full SHA for 76253e3
1 file changed
proc_rush.lua
@@ -294,7 +294,7 @@ end
294
--Utility functions for Rush
295
--Returns true if a monster can get a piercing effect as per Rush rules
296
function Card.CanGetPiercingRush(c)
297
- if c:IsHasEffect(EFFECT_CANNOT_ATTACK) or Duel.GetTurnCount()==1 then return false end
+ if c:IsHasEffect(EFFECT_CANNOT_ATTACK) or not Duel.IsAbleToEnterBP() then return false end
298
local e=c:IsHasEffect(EFFECT_PIERCE)
299
if e==nil then return true end
300
return e:GetReset()==0
0 commit comments