Skip to content

Commit c3420f1

Browse files
Merge pull request #783 from Zaenon/fix_epic_spawning
Fixed epic jokers not spawning (hopefully). (This is like my first contribution to this project in any form)
2 parents 73ba13a + a09019c commit c3420f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/content.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ SMODS.Rarity({
343343
pools = { ["Joker"] = true },
344344
get_weight = function(self, weight, object_type)
345345
-- The game shouldn't try generating Epic Jokers when they are disabled
346-
if Cryptid_config["Epic Jokers"] then
346+
if Cryptid.enabled("set_cry_epic") then
347347
return 0.003
348348
else
349349
return 0

0 commit comments

Comments
 (0)