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 7ee2069 commit 1b33f92Copy full SHA for 1b33f92
lib/junethack/models/game.rb
@@ -426,12 +426,12 @@ def ascended_with_all_invocation_items?
426
end
427
428
def ascended_without_elbereth?
429
- return true if ascended && conductX&.split(",").include?("elberethless")
+ return true if ascended && conductX&.split(",")&.include?("elberethless")
430
(ascended && (Integer(conduct) & 0x01000 > 0)) || (ascended && elbereths == 0)
431
432
433
def ascended_without_unfairly_scaring_monsters?
434
- ascended && (conductX&.split(",").include?("unfairscareless"))
+ ascended && (conductX&.split(",")&.include?("unfairscareless"))
435
436
437
# Heaven or Hell
0 commit comments