From 5ad4e7eb17e50d312f303999525cd6f3543cd7b5 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 13 Apr 2023 11:56:10 +0200 Subject: [PATCH] Forgot DC doesnt like relative paths --- .../living/silicon/robot/drone/drone_types.dm | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/modular_chomp/code/modules/mob/living/silicon/robot/drone/drone_types.dm b/modular_chomp/code/modules/mob/living/silicon/robot/drone/drone_types.dm index d940d1de9e..113ebb5663 100644 --- a/modular_chomp/code/modules/mob/living/silicon/robot/drone/drone_types.dm +++ b/modular_chomp/code/modules/mob/living/silicon/robot/drone/drone_types.dm @@ -10,16 +10,14 @@ can_pull_mobs = MOB_PULL_SAME can_pick_shell = FALSE shell_accessories = list("eyes-constructiondrone") - //These are short overrides dont do this for long shit - welcome_drone() - to_chat(src, "You are a construction drone, an autonomous engineering and fabrication system..") - to_chat(src, "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible.") - to_chat(src, "Use :d to talk to other drones and say to speak silently to your nearby fellows.") - to_chat(src, "You do not follow orders from anyone; not the AI, not humans, and not other synthetics..") - //These are short overrides dont do this for long shit - init() - ..() - flavor_text = "It's a bulky construction drone stamped with a Sol Central glyph." +/mob/living/silicon/robot/drone/construction/welcome_drone() + to_chat(src, "You are a construction drone, an autonomous engineering and fabrication system..") + to_chat(src, "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible.") + to_chat(src, "Use :d to talk to other drones and say to speak silently to your nearby fellows.") + to_chat(src, "You do not follow orders from anyone; not the AI, not humans, and not other synthetics..") +/mob/living/silicon/robot/drone/construction/init() + ..() + flavor_text = "It's a bulky construction drone stamped with a Sol Central glyph." /mob/living/silicon/robot/drone/mining icon_state = "miningdrone" @@ -31,10 +29,9 @@ can_pull_mobs = MOB_PULL_SAME can_pick_shell = FALSE shell_accessories = list("eyes-miningdrone") - //These are short overrides dont do this for long shit - init() - ..() - flavor_text = "It's a bulky mining drone stamped with a Grayson logo." +/mob/living/silicon/robot/drone/construction/init() + ..() + flavor_text = "It's a bulky mining drone stamped with a Grayson logo." /mob/living/silicon/robot/drone name = "unified drone" //Maintenance drones can be a Jani specific shell now, the normal drone will be a blank shell not really intended for use