From f64fb4b973384b9db2d3b4e5961bf0af4d66c29e Mon Sep 17 00:00:00 2001
From: DGamerL <108773801+DGamerL@users.noreply.github.com>
Date: Fri, 19 Apr 2024 16:12:15 +0200
Subject: [PATCH] Removes a span from an admin log (#25199)
* Easy span removal
* Fix accidental reverts
* Removes a missing span
---
code/game/machinery/cryopod.dm | 2 +-
code/modules/shuttle/shuttle_manipulator.dm | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm
index 8df74ed68ee..220b290e3a3 100644
--- a/code/game/machinery/cryopod.dm
+++ b/code/game/machinery/cryopod.dm
@@ -592,7 +592,7 @@
if(Gh.key == FT)
if(Gh.client && Gh.client.holder) //just in case someone has a byond name with @ at the start, which I don't think is even possible but whatever
to_chat(Gh, "Warning: Your body has entered cryostorage.")
- log_admin("[key_name(E)] entered a stasis pod.")
+ log_admin("[key_name(E)] entered a stasis pod.")
if(SSticker.mode.tdm_gamemode)
SSblackbox.record_feedback("nested tally", "TDM_quitouts", 1, list(SSticker.mode.name, "TDM Cryopods"))
message_admins("[key_name_admin(E)] entered a stasis pod. (JMP)")
diff --git a/code/modules/shuttle/shuttle_manipulator.dm b/code/modules/shuttle/shuttle_manipulator.dm
index 2103fed8513..c8417758b61 100644
--- a/code/modules/shuttle/shuttle_manipulator.dm
+++ b/code/modules/shuttle/shuttle_manipulator.dm
@@ -198,7 +198,7 @@
if(mdp)
usr.forceMove(get_turf(mdp))
message_admins("[key_name_admin(usr)] loaded [mdp] with the shuttle manipulator.")
- log_admin("[key_name(usr)] loaded [mdp] with the shuttle manipulator.")
+ log_admin("[key_name(usr)] loaded [mdp] with the shuttle manipulator.")
/obj/machinery/shuttle_manipulator/proc/action_load(datum/map_template/shuttle/loading_template)
if(isnull(loading_template))