From 1ea0b6368c681cef6f05abe8163ae24cdf1f8064 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:39:15 +0100 Subject: [PATCH] change vehicle desc (#19076) --- code/modules/vehicles/cargo_train.dm | 2 +- code/modules/vehicles/janicart.dm | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index c6345e537c5..19a3e60c58e 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -200,7 +200,7 @@ /obj/vehicle/train/engine/examine(mob/user) . = ..() - if(ishuman(user) && Adjacent(user)) + if(Adjacent(user)) . += "The power light is [on ? "on" : "off"].\nThere are[key ? "" : " no"] keys in the ignition." . += "The charge meter reads [cell? round(cell.percent(), 0.01) : 0]%" diff --git a/code/modules/vehicles/janicart.dm b/code/modules/vehicles/janicart.dm index 70896b83176..ebbb9296f33 100644 --- a/code/modules/vehicles/janicart.dm +++ b/code/modules/vehicles/janicart.dm @@ -80,8 +80,6 @@ /obj/vehicle/train/engine/janicart/examine(mob/user) . = ..() if(Adjacent(user)) - . += "The power light is [on ? "on" : "off"].\nThere are[key ? "" : " no"] keys in the ignition." - . += "The charge meter reads [cell? round(cell.percent(), 0.01) : 0]%" . += "This [callme] contains [reagents.total_volume] unit\s of water!" if(mybag) . += "\A [mybag] is hanging on the [callme]."