mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-22 19:46:36 +01:00
Fixes being able to understand NONVERBAL...
...languages when blind.
This commit is contained in:
@@ -90,7 +90,7 @@
|
||||
//Language check.
|
||||
for(var/datum/language/L in src.languages)
|
||||
if(speaking.name == L.name)
|
||||
if ((L.flags & NONVERBAL) && !(other in view(src)))
|
||||
if ((L.flags & NONVERBAL) && ((usr.sdisabilities & BLIND || usr.blinded || usr.stat) && !istype(usr,/mob/dead/observer)) && !(other in view(src)))
|
||||
return 0
|
||||
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user