makes requested tweaks

This commit is contained in:
bgobandit
2019-07-30 18:58:00 -04:00
parent c2dff281f4
commit 100542e09c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -43,7 +43,7 @@
/obj/vehicle/sealed/car/mob_try_exit(mob/M, mob/user, silent = FALSE)
if(M == user && (occupants[M] & VEHICLE_CONTROL_KIDNAPPED))
to_chat(user, "<span class='notice'>You push against the back of [src]'s trunk to try and get out.</span>")
to_chat(user, "<span class='notice'>You push against the back of \the [src]'s trunk to try and get out.</span>")
if(!do_after(user, escape_time, target = src))
return FALSE
to_chat(user,"<span class='danger'>[user] gets out of [src]</span>")
@@ -56,7 +56,7 @@
if(!I.force)
return
if(occupants[user])
to_chat(user, "<span class='notice'>Your attack bounces off the car's padded interior.</span>")
to_chat(user, "<span class='notice'>Your attack bounces off \the [src]'s padded interior.</span>")
return
return ..()
+1 -1
View File
@@ -86,7 +86,7 @@
if(obj_flags & EMAGGED)
return
obj_flags |= EMAGGED
to_chat(user, "<span class='danger'>You scramble the clown car's child safety, lock and a panel with six colorful buttons appears!</span>")
to_chat(user, "<span class='danger'>You scramble \the [src]'s child safety lock, and a panel with six colorful buttons appears!</span>")
initialize_controller_action_type(/datum/action/vehicle/sealed/RollTheDice, VEHICLE_CONTROL_DRIVE)
initialize_controller_action_type(/datum/action/vehicle/sealed/Cannon, VEHICLE_CONTROL_DRIVE)