mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-23 13:18:09 +01:00
Fixes a bunch runtimes
This commit is contained in:
@@ -140,13 +140,13 @@
|
||||
/mob/proc/on_hear_say(var/message)
|
||||
to_chat(src, message)
|
||||
if(teleop)
|
||||
to_chat(teleop, create_text_tag("body", "BODY:", teleop) + "[message]")
|
||||
to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[message]")
|
||||
|
||||
/mob/living/silicon/on_hear_say(var/message)
|
||||
var/time = say_timestamp()
|
||||
to_chat(src, "[time] [message]")
|
||||
if(teleop)
|
||||
to_chat(teleop, create_text_tag("body", "BODY:", teleop) + "[time] [message]")
|
||||
to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[time] [message]")
|
||||
|
||||
// Checks if the mob's own name is included inside message. Handles both first and last names.
|
||||
/mob/proc/check_mentioned(var/message)
|
||||
|
||||
@@ -194,7 +194,7 @@
|
||||
|
||||
//Hand slots themselves
|
||||
inv_box = new /obj/screen/inventory/hand()
|
||||
inv_box.hud = src
|
||||
inv_box.hud = HUD
|
||||
inv_box.name = "r_hand"
|
||||
inv_box.icon = ui_style
|
||||
inv_box.icon_state = "r_hand_inactive"
|
||||
@@ -209,7 +209,7 @@
|
||||
slot_info["[slot_r_hand]"] = inv_box.screen_loc
|
||||
|
||||
inv_box = new /obj/screen/inventory/hand()
|
||||
inv_box.hud = src
|
||||
inv_box.hud = HUD
|
||||
inv_box.name = "l_hand"
|
||||
inv_box.icon = ui_style
|
||||
inv_box.icon_state = "l_hand_inactive"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user