mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
. = ..()
This commit is contained in:
@@ -73,8 +73,9 @@
|
|||||||
static_inventory += using
|
static_inventory += using
|
||||||
|
|
||||||
/datum/hud/ghost/show_hud(version = 0, mob/viewmob)
|
/datum/hud/ghost/show_hud(version = 0, mob/viewmob)
|
||||||
if(!..())
|
. = ..()
|
||||||
return FALSE
|
if(!.)
|
||||||
|
return
|
||||||
var/mob/screenmob = viewmob || mymob
|
var/mob/screenmob = viewmob || mymob
|
||||||
if(!screenmob.client.prefs.ghost_hud)
|
if(!screenmob.client.prefs.ghost_hud)
|
||||||
screenmob.client.screen -= static_inventory
|
screenmob.client.screen -= static_inventory
|
||||||
|
|||||||
@@ -205,13 +205,16 @@
|
|||||||
return TRUE
|
return TRUE
|
||||||
|
|
||||||
/datum/hud/human/show_hud(version = 0,mob/viewmob)
|
/datum/hud/human/show_hud(version = 0,mob/viewmob)
|
||||||
if(!..())
|
. = ..()
|
||||||
return FALSE
|
if(!.)
|
||||||
|
return
|
||||||
var/mob/screenmob = viewmob || mymob
|
var/mob/screenmob = viewmob || mymob
|
||||||
hidden_inventory_update(screenmob)
|
hidden_inventory_update(screenmob)
|
||||||
|
|
||||||
/datum/hud/robot/show_hud(version = 0, mob/viewmob)
|
/datum/hud/robot/show_hud(version = 0, mob/viewmob)
|
||||||
..()
|
. = ..()
|
||||||
|
if(!.)
|
||||||
|
return
|
||||||
update_robot_modules_display()
|
update_robot_modules_display()
|
||||||
|
|
||||||
/datum/hud/proc/hidden_inventory_update()
|
/datum/hud/proc/hidden_inventory_update()
|
||||||
|
|||||||
Reference in New Issue
Block a user