From 81ffb5e3852257a3a0653fa6061da6039aef1a54 Mon Sep 17 00:00:00 2001 From: coiax Date: Sat, 14 May 2016 11:47:35 +0100 Subject: [PATCH] [s] Removes debug world << from camo stamps (#17649) --- code/modules/paperwork/stamps.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index 656bc0c7d8e..8ea26bf7c74 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -91,7 +91,6 @@ var/input_stamp = input(user, "Choose a stamp to disguise as.", "Choose a stamp.") as null|anything in stamp_names - world << input_stamp if(user && (src in user.contents) && input_stamp) var/obj/item/weapon/stamp/stamp_type @@ -99,7 +98,6 @@ stamp_type = i if(initial(stamp_type.name) == input_stamp) break - world << stamp_type name = initial(stamp_type.name) icon_state = initial(stamp_type.icon_state)