From 414054c382446d412bfe6ddf9f340ba1c7cbba84 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Wed, 17 Aug 2016 09:16:33 -0400 Subject: [PATCH] /div --- code/modules/shuttle/shuttle_manipulator.dm | 22 ++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/code/modules/shuttle/shuttle_manipulator.dm b/code/modules/shuttle/shuttle_manipulator.dm index 7c653e74a05..1cb4293be8c 100644 --- a/code/modules/shuttle/shuttle_manipulator.dm +++ b/code/modules/shuttle/shuttle_manipulator.dm @@ -41,6 +41,10 @@ /obj/machinery/shuttle_manipulator/process() return +/obj/machinery/shuttle_manipulator/attack_ghost(mob/user as mob) + user.set_machine(src) + interact(user) + /obj/machinery/shuttle_manipulator/attack_hand(mob/user as mob) user.set_machine(src) interact(user) @@ -85,9 +89,9 @@ var/dat = "" dat += "
" - dat += "Status" - dat += "Templates" - dat += "Modification" + dat += "Status" + dat += "Templates" + dat += "Modification" dat += "
" dat += "
" @@ -100,30 +104,30 @@ if(SHUTTLE_MANIPULATOR_STATUS) dat += "
" for(var/list/shuttle in shuttle_data["shuttles"]) - dat += "" + dat += "
" dat += "[shuttle["name"]] [shuttle["id"]]: [shuttle["mode"]] [shuttle["status"]] [shuttle["timer"]] " dat += "Jump To" dat += "Fast Travel" - dat += "
" + dat += "
" dat += "
" if(SHUTTLE_MANIPULATOR_TEMPLATE) dat += "
" for(var/list/shuttle in shuttle_data["shuttles"]) - dat += "" + dat += "
" dat += " [shuttle["name"]]
[shuttle["description"]]
[shuttle["admin_notes"]]
" dat += "Load Template" dat += "Select Template" dat += "Preview Template" - dat += "
" + dat += "
" dat += "
" if(SHUTTLE_MANIPULATOR_MOD) dat += "
" for(var/list/shuttle in shuttle_data["shuttles"]) - dat += "" + dat += "
" dat += "[shuttle["name"]] [shuttle["id"]]
[shuttle["description"]]
[shuttle["admin_notes"]]
" dat += "Send to port" dat += "Jump To" - dat += "
" + dat += "
" dat += "
" var/datum/browser/popup = new(user, "shuttle manipulator", "Shuttle Manipulator", 500, 500)