From 469baf0dcd4e9793110a32432b6b593658a2e4c9 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Tue, 5 Mar 2019 15:37:55 +0100 Subject: [PATCH] Making dogs rideable I remember this was requested at some point. Finally found the file that sets up all this stuff for the doggos, enjoy. --- .../mob/living/silicon/robot/robot_modules/station_vr.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 56562af581..785467cb20 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -126,6 +126,7 @@ /obj/item/weapon/robot_module/robot/knine name = "k9 robot module" + can_buckle = 1 sprites = list( "K9 hound" = "k9", "K9 Alternative (Static)" = "k92", @@ -194,6 +195,7 @@ /obj/item/weapon/robot_module/robot/medihound name = "MediHound module" + can_buckle = 1 channels = list("Medical" = 1) networks = list(NETWORK_MEDICAL) subsystems = list(/mob/living/silicon/proc/subsystem_crew_monitor) @@ -268,7 +270,8 @@ ..() /obj/item/weapon/robot_module/robot/ert - name = "Emergency Responce module" + name = "Emergency Response module" + can_buckle = 1 channels = list("Security" = 1) networks = list(NETWORK_SECURITY) can_be_pushed = 0 @@ -314,6 +317,7 @@ /obj/item/weapon/robot_module/robot/scrubpup name = "Custodial Hound module" + can_buckle = 1 sprites = list( "Custodial Hound" = "scrubpup", ) @@ -393,6 +397,7 @@ /obj/item/weapon/robot_module/robot/science name = "Research Hound Module" + can_buckle = 1 sprites = list( "Research Hound" = "science", ) @@ -438,6 +443,7 @@ /obj/item/weapon/robot_module/robot/engiedog name = "Construction Hound module" + can_buckle = 1 sprites = list( "Pupdozer" = "pupdozer", )