Various fixes

This commit is contained in:
Markolie
2017-02-10 18:55:23 +01:00
parent 73f314d150
commit b0d4f5d92a
8 changed files with 21 additions and 23 deletions
@@ -1248,7 +1248,6 @@
return 0
return 1
/mob/living/carbon/human/proc/get_visible_gender()
if(wear_suit && wear_suit.flags_inv & HIDEJUMPSUIT && ((head && head.flags_inv & HIDEMASK) || wear_mask))
return NEUTER
+3 -3
View File
@@ -130,12 +130,12 @@ var/list/alldepartments = list()
if(href_list["dept"])
if(authenticated)
var/lastdestination = destination
var/list/combineddepartments = alldepartments
var/list/combineddepartments = alldepartments.Copy()
if(long_range_enabled)
combineddepartments += admin_departments
combineddepartments += admin_departments.Copy()
if(emagged)
combineddepartments += hidden_admin_departments
combineddepartments += hidden_admin_departments.Copy()
destination = input(usr, "To which department?", "Choose a department", "") as null|anything in combineddepartments
if(!destination)