Commit 9600594a authored by mercury233's avatar mercury233

fix Auxiliary.IsPlayerCanNormalDraw

parent e828999b
...@@ -1505,7 +1505,7 @@ end ...@@ -1505,7 +1505,7 @@ end
---@return boolean ---@return boolean
function Auxiliary.IsPlayerCanNormalDraw(tp) function Auxiliary.IsPlayerCanNormalDraw(tp)
return Duel.GetDrawCount(tp)>0 and Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)>0 return Duel.GetDrawCount(tp)>0 and Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)>0
and not Duel.GetFlagEffect(tp,FLAG_ID_NO_NORMAL_DRAW) and Duel.GetFlagEffect(tp,FLAG_ID_NO_NORMAL_DRAW)==0
end end
--- ---
---@param e Effect ---@param e Effect
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment