Using Chaos Ruler the chaotic magical dragon's on summon effect and excavating a light/dark monster the effect activation box reads the wrong effect

  1. Bug description

    When using Chaos Ruler the chaotic magical dragon’s on summon effect and excavating a light/dark monster the effect activation box reads the wrong effect (asks if you want to summon chaos ruler from the gy)

  2. Bug reproduction steps

    Summoned Chaos Ruler and excavated a light/dark monster

  3. Screenshot OR error code

  4. Expected behavior

    The box should ask if you want to add an excavated light/dark monster to your hand instead

@Lyris

	--to hand
	local e1=Effect.CreateEffect(c)
	e1:SetDescription(aux.Stringid(3040496,0))
	e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DECKDES)
	e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
	e1:SetProperty(EFFECT_FLAG_DELAY)
	e1:SetCode(EVENT_SPSUMMON_SUCCESS)
	e1:SetCountLimit(1,3040496)
	e1:SetCondition(c3040496.thcon)
	e1:SetTarget(c3040496.thtg)
	e1:SetOperation(c3040496.thop)
	c:RegisterEffect(e1)
	--spsummon
	local e2=Effect.CreateEffect(c)
	e2:SetDescription(aux.Stringid(3040496,1))
	e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
	e2:SetType(EFFECT_TYPE_IGNITION)
	e2:SetRange(LOCATION_GRAVE)
	e2:SetCountLimit(1,3040497)
	e2:SetCost(c3040496.spcost)
	e2:SetTarget(c3040496.sptg)
	e2:SetOperation(c3040496.spop)
	c:RegisterEffect(e2)

1 Tuner + 1+ non-Tuner monsters
If this card is Synchro Summoned: You can excavate the top 5 cards of your Deck, and if you do, you can add 1 excavated LIGHT or DARK monster to your hand, also send the remaining cards to the GY. You can banish 1 LIGHT and 1 DARK monster from your hand and/or GY, except this card; Special Summon this card from your GY, but banish it when it leaves the field. You can only use each effect of “Chaos Ruler, the Chaotic Magical Dragon” once per turn.

The script clearly shows str1 being the effect that adds the excavated card to your hand while str2 is the Special Summon.

This is exactly what we have in our database so I’m not sure why the strings are inverted?

Can you explain?

This has been fixed.