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]."