Skip to content

Commit

Permalink
Add location to vehicle entry/exit logs
Browse files Browse the repository at this point in the history
  • Loading branch information
flappybatpal committed Jan 5, 2025
1 parent a86c57d commit 6e39e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/transport/pods/vehicle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@
else
src.ion_trail?.stop()

logTheThing(LOG_VEHICLE, ejectee, "exits pod: <b>[constructTarget(src.name,"vehicle")]</b>")
logTheThing(LOG_VEHICLE, ejectee, "exits pod: <b>[constructTarget(src.name,"vehicle")]</b> at [log_loc(src)]")

/obj/machinery/vehicle/proc/leave_pod(mob/ejectee as mob)
// Assert facing direction for eject location offset
Expand Down Expand Up @@ -1105,7 +1105,7 @@

boutput(M, SPAN_HINT("You can also use the Space Bar to fire!"))

logTheThing(LOG_VEHICLE, M, "enters vehicle: <b>[constructTarget(src.name,"vehicle")]</b>")
logTheThing(LOG_VEHICLE, M, "enters vehicle: <b>[constructTarget(src.name,"vehicle")]</b> at [log_loc(src)]")

/obj/machinery/vehicle/proc/eject_occupants()
if(isghostdrone(usr))
Expand Down

0 comments on commit 6e39e21

Please sign in to comment.