From fe32bdc9a2f2ce0f005ade9de483afb25c461df5 Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Fri, 12 Dec 2014 11:31:02 -0500 Subject: [PATCH] Fix bug making it impossible to detach voidsuit boots --- code/modules/clothing/spacesuits/void/void.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/spacesuits/void/void.dm b/code/modules/clothing/spacesuits/void/void.dm index 5d0247283e..60b5e0c6c7 100644 --- a/code/modules/clothing/spacesuits/void/void.dm +++ b/code/modules/clothing/spacesuits/void/void.dm @@ -154,9 +154,9 @@ helmet.loc = get_turf(src) src.helmet = null else if (boots) - user << "You detatch \the [helmet] from \the [src]'s helmet mount." - helmet.loc = get_turf(src) - src.helmet = null + user << "You detatch \the [boots] from \the [src]'s boot mounts." + boots.loc = get_turf(src) + src.boots = null else user << "\The [src] does not have anything installed." return