Skip to content

Commit

Permalink
Merge pull request #6921 from vtcifer/safe_room_additional_EV_strings
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtraDR authored Sep 16, 2024
2 parents b59c5b5 + 6b2d949 commit ecef79d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions safe-room.lic
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class SafeRoom
DRCT.walk_to empath['id']

if !DRRoom.pcs.include?(empath) && /.*vela.tohr (\w+)/ =~ DRRoom.room_objs.grep(@plant_regex).to_s
Flags.add('doneheal', /You sense that this particular .* has healed all that it can.$/, /^The last of your wounds knit shut/)
Flags.add('doneheal', /You sense that this particular .* has healed all that it can.$/, /^You no longer feel the warmth from the touch of the/, /^The last of your wounds knit shut/)
while /.*vela.tohr (\w+)/ =~ DRRoom.room_objs.grep(@plant_regex).to_s
fput("touch #{Regexp.last_match(1)}")

Expand All @@ -305,7 +305,7 @@ class SafeRoom
break if Flags['doneheal']
end

if !Flags['doneheal'] || Flags['doneheal'].to_s =~ /You sense that this particular .* has healed all that it can.$/
if !Flags['doneheal'] || Flags['doneheal'].to_s =~ /You sense that this particular .* has healed all that it can|You no longer feel the warmth from the touch of the/
Flags.reset('doneheal')
next
end
Expand Down

0 comments on commit ecef79d

Please sign in to comment.