Skip to content

Commit

Permalink
rubocop - disable directives
Browse files Browse the repository at this point in the history
  • Loading branch information
vtcifer authored Oct 6, 2024
1 parent 5bd0782 commit 1379932
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions truffenyi-commune-quest.lic
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ class TruffenyiCommuneQuest
DRC.message("Vial step started at #{start}.")
while (line = get)
waitrt?
### Light Aspects
# rubocop:disable Layout/IndentationConsistency
# This is to enable better code collapse in IDEs given the size of these
# code blocks
# Light Aspects
if line =~ /^Your vision fades and you suddenly see yourself working in front of a glowing forge/
DRC.bput('pray Divyaush', 'In your')
end
Expand Down Expand Up @@ -244,7 +247,7 @@ class TruffenyiCommuneQuest
if line =~ /^Your vision fades and you see yourself sitting on a bar stool/
DRC.bput('pray Saemaus', 'In your')
end
### Dark Aspects
# Dark Aspects
if line =~ /^Your vision fades and you see yourself walking through one of your grain fields/
DRC.bput('pray Asketi', 'In your')
end
Expand Down Expand Up @@ -275,7 +278,9 @@ class TruffenyiCommuneQuest
if line =~ /^Your vision fades and you see yourself standing in the snow peering into the window of a rival/
DRC.bput('pray Zachriedek', 'In your')
end
### Neutral Aspects: TBD?
# Neutral Aspects: TBD?
# rubocop:enable Layout/IndentationConsistency

if line =~ /^Your stomach grumbles and you realize that you're holding a/
fput("drop #{checkright || checkleft}") if DRC.left_hand || DRC.right_hand
end
Expand Down

0 comments on commit 1379932

Please sign in to comment.