File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -320,13 +320,6 @@ function Card:update(dt)
320320 end
321321 self :flip_side ()
322322 end
323- if self .ability .cry_absolute then -- feedback loop... may be problematic
324- self .cry_absolute = true
325- end
326- if self .cry_absolute then
327- self .ability .cry_absolute = true
328- self .ability .eternal = true
329- end
330323 if self .ability .pinned then
331324 self .pinned = true
332325 end -- gluing these variables together
Original file line number Diff line number Diff line change @@ -2206,8 +2206,8 @@ end
22062206
22072207local is_eternalref = SMODS .is_eternal
22082208function SMODS .is_eternal (card )
2209- if not G . deck then
2210- return card . ability . eternal
2209+ if Cryptid . safe_get ( card , " ability " , " cry_absolute " ) then
2210+ return true
22112211 end
22122212 return is_eternalref (card )
22132213end
You can’t perform that action at this time.
0 commit comments