mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Compile fix
This commit is contained in:
@@ -157,7 +157,7 @@ datum/hud/New(mob/owner)
|
|||||||
adding = null
|
adding = null
|
||||||
other = null
|
other = null
|
||||||
hotkeybuttons = null
|
hotkeybuttons = null
|
||||||
item_action_list = null
|
// item_action_list = null // ?
|
||||||
mymob = null
|
mymob = null
|
||||||
|
|
||||||
/datum/hud/proc/hidden_inventory_update()
|
/datum/hud/proc/hidden_inventory_update()
|
||||||
|
|||||||
@@ -65,12 +65,12 @@
|
|||||||
m_type = 2
|
m_type = 2
|
||||||
if ("flap")
|
if ("flap")
|
||||||
if (!src.restrained())
|
if (!src.restrained())
|
||||||
message = "flaps [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] wings."
|
message = "flaps its wings."
|
||||||
m_type = 2
|
m_type = 2
|
||||||
|
|
||||||
if ("aflap")
|
if ("aflap")
|
||||||
if (!src.restrained())
|
if (!src.restrained())
|
||||||
message = "flaps [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] wings ANGRILY!"
|
message = "flaps its wings ANGRILY!"
|
||||||
m_type = 2
|
m_type = 2
|
||||||
|
|
||||||
if ("twitch")
|
if ("twitch")
|
||||||
|
|||||||
@@ -37,10 +37,11 @@
|
|||||||
// should make the UI auto-update; doesn't seem to?
|
// should make the UI auto-update; doesn't seem to?
|
||||||
ui.set_auto_update(1)
|
ui.set_auto_update(1)
|
||||||
|
|
||||||
/datum/nano_module/crew_monitor/proc/scan()
|
/*/datum/nano_module/crew_monitor/proc/scan()
|
||||||
for(var/mob/living/carbon/human/H in mob_list)
|
for(var/mob/living/carbon/human/H in mob_list)
|
||||||
if(istype(H.w_uniform, /obj/item/clothing/under))
|
if(istype(H.w_uniform, /obj/item/clothing/under))
|
||||||
var/obj/item/clothing/under/C = H.w_uniform
|
var/obj/item/clothing/under/C = H.w_uniform
|
||||||
if (C.has_sensor)
|
if (C.has_sensor)
|
||||||
tracked |= C
|
tracked |= C
|
||||||
return 1
|
return 1
|
||||||
|
*/
|
||||||
Reference in New Issue
Block a user