Skip to content

Commit

Permalink
Update recipes.dm (#8464)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanz-Moon authored Mar 28, 2024
1 parent c20970a commit cc4d43f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -660,11 +660,11 @@
for(var/mob/living/carbon/M in viewers(world.view, location))
switch(get_dist(M, location))
if(0 to 3)
if(M.eyecheck() <= FLASH_PROTECTION_MAJOR)
if(M.eyecheck() < FLASH_PROTECTION_MAJOR)
M.flash(15, FALSE , FALSE , FALSE)

if(4 to 5)
if(M.eyecheck() <= FLASH_PROTECTION_MAJOR)
if(M.eyecheck() < FLASH_PROTECTION_MAJOR)
M.flash(0, FALSE , FALSE , FALSE)

/datum/chemical_reaction/emp_pulse
Expand Down

0 comments on commit cc4d43f

Please sign in to comment.