From d270ba10d6537abc63aadc30d65defd5c9b01806 Mon Sep 17 00:00:00 2001
From: Henri215 <77684085+Henri215@users.noreply.github.com>
Date: Thu, 3 Nov 2022 14:55:27 -0300
Subject: [PATCH] shielding typo (#19589)
---
code/game/machinery/doors/airlock.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index 9b21043842c..ee88c4f959a 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -1027,7 +1027,7 @@ GLOBAL_LIST_EMPTY(airlock_emissive_underlays)
if(I.use_tool(src, user, 40, volume = I.tool_volume))
if(!panel_open || security_level != AIRLOCK_SECURITY_PLASTEEL_I_S)
return
- user.visible_message("[user] remove \the [src]'s shielding.",
+ user.visible_message("[user] removes \the [src]'s shielding.",
"You remove \the [src]'s inner shielding.")
security_level = AIRLOCK_SECURITY_NONE
modify_max_integrity(normal_integrity)
@@ -1039,7 +1039,7 @@ GLOBAL_LIST_EMPTY(airlock_emissive_underlays)
if(I.use_tool(src, user, 40, volume = I.tool_volume))
if(!panel_open || security_level != AIRLOCK_SECURITY_PLASTEEL_O_S)
return
- user.visible_message("[user] remove \the [src]'s shielding.",
+ user.visible_message("[user] removes \the [src]'s shielding.",
"You remove \the [src]'s shielding.")
security_level = AIRLOCK_SECURITY_PLASTEEL_I
spawn_atom_to_turf(/obj/item/stack/sheet/plasteel, user.loc, 1)