From 6fc3e7a4e1466d016e4f82db90dd93b5620ea64c Mon Sep 17 00:00:00 2001 From: vtcifer Date: Wed, 4 Sep 2024 23:18:13 -0400 Subject: [PATCH] Add support for EV only places in safe_room_empaths --- safe-room.lic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/safe-room.lic b/safe-room.lic index 8d4ed8d4a0..bf9cc55638 100644 --- a/safe-room.lic +++ b/safe-room.lic @@ -270,7 +270,7 @@ class SafeRoom .map { |room| pc_empaths.select { |empath| empath['id'] == room } } .flatten .each do |empath| - next unless DRRoom.pcs.include?(empath['name'].capitalize!) || @validator.in_game?(empath['name']) + next unless empath['name'].upcase == 'EV' || DRRoom.pcs.include?(empath['name'].capitalize!) || @validator.in_game?(empath['name']) next unless use_pc_empath?(empath['id'], empath['name']) DRCM.ensure_copper_on_hand(settings.safe_room_tip_threshold || 0, settings)