You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/datum/action/bloodsucker/cloak/ContinueActive(mob/living/user, mob/living/target)
if (!..())
return FALSE
// Must be CONSCIOUS
if (user.stat > CONSCIOUS)
to_chat(owner, "<span class='warning'>DEBUG: FAIL STAT </span>")
return FALSE
// Must be SAME LOCATION
var/turf/T = owner.loc
if (!upgrade_canMove && T != remember_start_loc)
to_chat(owner, "<span class='warning'>DEBUG: FAIL MOVE [T] vs [remember_start_loc] </span>")
return FALSE
// Must be DARK
if(istype(T) && T.get_lumcount() > light_min)
to_chat(owner, "<span class='warning'>DEBUG: FAIL DARK</span>")
return FALSE
return TRUE
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: