mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Vampire Hypnotize now only fails on blinded people if their blindness is genetic or because of a blindfold. (#30440)
* Hypnotize now only fails on blinded people if their blindness is genetic * also glasses
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
|
||||
if(ishuman(target) || ismonkey(target))
|
||||
var/mob/living/carbon/C = target
|
||||
if (C.is_blind())
|
||||
if ((C.sdisabilities & BLIND) || (C.sight & BLIND))
|
||||
to_chat(user, "<span class='warning'>\the [C] is blind!</span>")
|
||||
return FALSE
|
||||
if(do_mob(user, C, 10 - C.get_vamp_enhancements()))
|
||||
|
||||
Reference in New Issue
Block a user