Skip to content

Commit 0bedb76

Browse files
committed
pity prize no longer generates gambler tags, to be in-line with original suggestion
1 parent 99f66ca commit 0bedb76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

items/misc_joker.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9624,14 +9624,15 @@ local pity_prize = {
96249624
local tag_key
96259625
repeat
96269626
tag_key = get_next_tag_key("cry_pity_prize")
9627-
until tag_key ~= "tag_boss" --I saw pickle not generating boss tags because it apparently causes issues, so I did the same here
9627+
until tag_key ~= "tag_boss" and tag_key ~= "tag_cry_gambler" --I saw pickle not generating boss tags because it apparently causes issues, so I did the same here
96289628

96299629
local tag = Cryptid.get_next_tag()
96309630
if tag then
96319631
tag_key = tag
96329632
end
96339633

96349634
-- this is my first time seeing repeat... wtf
9635+
-- ^^ using repeat...until in this economy? absurd!
96359636
local tag = Tag(tag_key)
96369637
tag.ability.shiny = Cryptid.is_shiny()
96379638
if tag.name == "Orbital Tag" then

0 commit comments

Comments
 (0)