Skip to content

Commit 6a66f46

Browse files
committed
"Chasmatis, Dragon Ruler of Auroras" fix
Fixed a bug where it would not be able to apply the effects of "Dragon Ruler" monsters
1 parent e6cd220 commit 6a66f46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utility.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,12 +1000,12 @@ end
10001000
Card.RegisterEffect=(function()
10011001
local oldf=Card.RegisterEffect
10021002
local function map_to_effect_code(val)
1003-
if val==1 then return 511002571 end -- access to effects that activate that detach an Xyz Material as cost
1003+
if val==1 then return 511002571 end -- access to effects that activate that detach an Xyz Material as cost
10041004
if val==2 then return 511001692 end -- access to Cardian Summoning conditions/effects
10051005
if val==4 then return 12081875 end -- access to Thunder Dragon effects that activate by discarding
1006-
if val==8 then return 511310036 end -- access to Allure Queen effects that activate by sending themselves to GY
1006+
if val==8 then return 511310036 end -- access to Allure Queen effects that activate by sending themselves to GY
10071007
if val==16 then return 58858807 end -- access to tellarknights/constellar effects that activate when Normal Summoned
1008-
if val==32 then return 101208047 end -- access to Dragon Ruler effects that activate by discarding
1008+
if val==32 then return 4965193 end -- access to Dragon Ruler effects that activate by discarding
10091009
return nil
10101010
end
10111011
return function(c,e,forced,...)

0 commit comments

Comments
 (0)