We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118e58a commit a06f3b7Copy full SHA for a06f3b7
items/code.lua
@@ -3528,7 +3528,8 @@ local log = {
3528
local pseudorandom = copy_table(G.GAME.pseudorandom)
3529
local j = {}
3530
for i = 1, 5 do
3531
- j[#j + 1] = G.localization.descriptions["Joker"][Cryptid.predict_joker("sho")].name
+ local next_joker = G.localization.descriptions["Joker"][Cryptid.predict_joker("sho")]
3532
+ j[#j + 1] = next_joker and next_joker.name or "[NOT A JOKER]"
3533
end
3534
G.GAME.pseudorandom = copy_table(pseudorandom)
3535
G.GAME.USING_CODE = true
0 commit comments